mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
includes:
|
|
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
|
|
- vendor/larastan/larastan/extension.neon
|
|
- vendor/nesbot/carbon/extension.neon
|
|
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
|
|
- vendor/phpstan/phpstan-strict-rules/rules.neon
|
|
|
|
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
|
|
paths:
|
|
- app
|
|
- bootstrap
|
|
- config
|
|
- database
|
|
- public
|
|
- resources
|
|
- routes
|
|
excludePaths:
|
|
- bootstrap/cache
|
|
strictRules:
|
|
strictArrayFilter: false
|
|
ignoreErrors:
|
|
- '#Dynamic call to static method Illuminate\\Http\\Request::validate\(\)#'
|