forked from repman-io/repman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
27 lines (24 loc) · 1.05 KB
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
includes:
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
parameters:
ignoreErrors:
-
message: "#^Strict comparison using \\!\\=\\= between string and null will always evaluate to true\\.$#"
count: 1
path: src/Service/PackageSynchronizer/ComposerPackageSynchronizer.php
-
message: "#^Variable property access on DateInterval\\.$#"
count: 1
path: src/Service/Twig/DateExtension.php
-
message: "#^Only booleans are allowed in a ternary operator condition, int given\\.$#"
count: 1
path: src/Service/Twig/DateExtension.php
-
message: "#^Expression on left side of \\?\\? is not nullable\\.$#"
count: 2
path: src/Service/PackageSynchronizer/ComposerPackageSynchronizer.php
autoload_files:
- vendor/twig/twig/src/Extension/CoreExtension.php # twig global functions
symfony:
container_xml_path: '%rootDir%/../../../var/cache/test/Buddy_Repman_KernelTestDebugContainer.xml'