38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
includes:
|
|
- phpstan-baseline.neon
|
|
parameters:
|
|
level: max
|
|
paths:
|
|
- app
|
|
- public
|
|
- src
|
|
- test
|
|
scanFiles:
|
|
- app/constants.php
|
|
- examples/signon-script.php
|
|
bootstrapFiles:
|
|
- test/phpstan-constants.php
|
|
stubFiles:
|
|
- test/stubs/uploadprogress.stub
|
|
excludePaths:
|
|
- cache/*
|
|
- test/doctum-config.php
|
|
dynamicConstantNames:
|
|
- ROOT_PATH
|
|
- TEST_PATH
|
|
- VERSION_SUFFIX
|
|
checkBenevolentUnionTypes: true
|
|
checkUninitializedProperties: true
|
|
checkDynamicProperties: true
|
|
checkTooWideReturnTypesInProtectedAndPublicMethods: true
|
|
checkImplicitMixed: true
|
|
ignoreErrors:
|
|
-
|
|
message: '#Dynamic call to static method PHPUnit\\Framework\\Assert::[a-zA-Z]+\(\)\.#'
|
|
paths:
|
|
- test/classes/*
|
|
- test/selenium/*
|
|
-
|
|
message: '#Dynamic call to static method PHPUnit\\Framework\\TestCase::[a-zA-Z]+\(\)\.#'
|
|
path: test/classes/*
|