-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpstan.neon
28 lines (19 loc) · 884 Bytes
/
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
includes:
- ./vendor/nunomaduro/larastan/extension.neon
parameters:
paths:
- src
# The level 9 is the highest level
level: max
phpVersion: 80000
excludePaths:
- ./src/Overrides
ignoreErrors:
- '#Parameter \#2 \$callback of static method Illuminate\\Container\\BoundMethod\:\:call\(\) expects \(callable\(\)\: mixed\)\|string, array\{object, string\} given\.#'
- '#Property MichaelRubel\\EnhancedContainer\\Exceptions\\InstanceInteractionException\:\:\$message has no type specified\.#'
- '#(.*)getDependencies\(\) expects class\-string, string given\.#'
- '#(.*)resolvePassedClass\(\) expects string, object\|string given\.#'
- '#\(class\-string\) does not accept string\.#'
checkMissingIterableValueType: false
reportUnmatchedIgnoredErrors: false
checkOctaneCompatibility: true