-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.dist.neon
More file actions
30 lines (29 loc) · 810 Bytes
/
phpstan.dist.neon
File metadata and controls
30 lines (29 loc) · 810 Bytes
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
includes:
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-symfony/rules.neon
parameters:
phpVersion: 80200
level: 9
checkMaybeUndefinedVariables: true
checkNullables: true
reportUnmatchedIgnoredErrors: false
ignoreErrors:
-
identifier: if.alwaysFalse
-
identifier: identical.alwaysFalse
paths:
- src/
exceptions:
check:
missingCheckedExceptionInThrows: true
tooWideThrowType: true
implicitThrows: true
uncheckedExceptionClasses:
- 'LogicException'
- 'PHPUnit\Framework\ExpectationFailedException'
- 'PHPUnit\Framework\TestFailure'
tmpDir: .phpstan.cache/
excludePaths:
- vendor/
- tests/