-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathphpstan.neon
More file actions
25 lines (23 loc) · 830 Bytes
/
phpstan.neon
File metadata and controls
25 lines (23 loc) · 830 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
parameters:
level: 8
paths:
- src/
bootstrapFiles:
- %rootDir%/../../../tests/bootstrap.php
reportUnmatchedIgnoredErrors: false
earlyTerminatingMethodCalls:
Cake\Console\BaseCommand:
- abort
dynamicConstantNames:
- WINDOWS
ignoreErrors:
- identifier: missingType.iterableValue
- identifier: missingType.generics
- identifier: include.fileNotFound
- identifier: trait.unused
- '#Parameter \#1 \$items of class .+Collection constructor expects iterable, .+StatementInterface given.#'
- '#Call to function method\_exists\(\) with .+Entity.+ and .+statuses.+ will always evaluate to true.#'
- '#Call to function property\_exists\(\) with .+Table and .+ will always evaluate to false.#'
-
message: '#If condition is always false.#'
path: '%currentWorkingDirectory%/src/Shell/IndentShell.php'