29 lines
818 B
Plaintext
29 lines
818 B
Plaintext
includes:
|
|
- phpstan-baseline.neon.dist
|
|
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
|
|
|
|
parameters:
|
|
tmpDir: build/phpstan
|
|
level: 8
|
|
paths:
|
|
- src
|
|
- tests
|
|
bootstrapFiles:
|
|
- vendor/autoload.php
|
|
parallel:
|
|
processTimeout: 300.0
|
|
polluteScopeWithLoopInitialAssignments: false
|
|
polluteScopeWithAlwaysIterableForeach: false
|
|
checkAlwaysTrueCheckTypeFunctionCall: true
|
|
checkAlwaysTrueInstanceof: true
|
|
checkAlwaysTrueStrictComparison: true
|
|
checkExplicitMixedMissingReturn: true
|
|
checkFunctionNameCase: true
|
|
checkInternalClassCaseSensitivity: true
|
|
checkMissingIterableValueType: false
|
|
reportMaybesInMethodSignatures: true
|
|
reportStaticMethodSignatures: true
|
|
checkTooWideReturnTypesInProtectedAndPublicMethods: true
|
|
featureToggles:
|
|
disableCheckMissingIterableValueType: false
|