coolify/phpstan.neon

36 lines
1.1 KiB
Text
Raw Normal View History

2025-03-29 15:57:07 +00:00
includes:
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
2025-03-29 15:57:07 +00:00
- vendor/larastan/larastan/extension.neon
- vendor/nesbot/carbon/extension.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
2025-03-29 15:57:07 +00:00
parameters:
level: max
checkModelProperties: true
checkOctaneCompatibility: true
checkMissingCallableSignature: true
checkTooWideReturnTypesInProtectedAndPublicMethods: true
rememberPossiblyImpureFunctionValues: false
checkBenevolentUnionTypes: true
reportPossiblyNonexistentGeneralArrayOffset: true
reportPossiblyNonexistentConstantArrayOffset: true
reportAlwaysTrueInLastCondition: true
reportAnyTypeWideningInVarTag: true
tipsOfTheDay: false
tmpDir: ./storage/phpstan
2025-03-29 15:57:07 +00:00
paths:
- app
- bootstrap
- config
- database
- public
2025-03-29 15:57:07 +00:00
- resources
- routes
excludePaths:
- bootstrap/cache
strictRules:
strictArrayFilter: false
ignoreErrors:
- '#Dynamic call to static method Illuminate\\Http\\Request::validate\(\)#'