-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
27 lines (26 loc) · 953 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
includes:
- vendor/phpstan/phpstan-webmozart-assert/extension.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/larastan/larastan/extension.neon
parameters:
treatPhpDocTypesAsCertain: false
reportMaybesInPropertyPhpDocTypes: false # This is disabled so we can narrow down the type `array` on a parent class in the child class.
checkInternalClassCaseSensitivity: true
checkTooWideReturnTypesInProtectedAndPublicMethods: true
checkUninitializedProperties: true
checkExplicitMixed: true
checkMissingCallableSignature: true
level: 9
paths:
- app
- bootstrap
- config
- database
- domain
- infrastructure
- routes
- tests