-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
phpstan.neon
38 lines (37 loc) · 1.49 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
28
29
30
31
32
33
34
35
36
37
38
parameters:
level: 9
reportUnmatchedIgnoredErrors: false
inferPrivatePropertyTypeFromConstructor: true
ignoreErrors:
-
message: '#Variable \$container might not be defined#'
path: config/services.php
-
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\)#'
path: src/Configuration/Definition.php
-
message: '#Variable \$configFile might not be defined#'
path: src/Configuration/ConfigurationParser.php
-
message: '#Call to an undefined method Crunz\\Event::DummyFrequency\(\)#'
path: src/Stubs/BasicTask.php
-
message: '#Parameter \#1 \$command of static method Symfony\\Component\\Process\\Process::fromShellCommandline\(\) expects string#'
path: src/Process/Process.php
-
message: '#Result of#'
path: src/Event.php
-
message: '#Parameter \#1 \$store of class#'
path: src/Event.php
-
message: '#CrunzContainer#'
path: src/Application.php
-
message: '#Parameter \#2 \$currentTime#'
path: src/Infrastructure/Dragonmantank/CronExpression/DragonmantankCronExpression.php
includes:
- phpstan-baseline.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon