Files
firefly-iii/.ci/phpstan.neon

22 lines
532 B
Plaintext
Raw Normal View History

includes:
2020-07-31 17:41:21 +02:00
- ../vendor/nunomaduro/larastan/extension.neon
- ../vendor/ergebnis/phpstan-rules/rules.neon
- ../vendor/phpstan/phpstan-deprecation-rules/rules.neon
- ../vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
parameters:
2020-07-31 15:12:26 +02:00
ignoreErrors:
- '#is not allowed to extend#'
- '#is neither abstract nor final#'
paths:
- ../app
- ../config
- ../database
- ../resources
- ../routes
- ../bootstrap/app.php
2020-07-31 15:12:26 +02:00
# The level 8 is the highest level. original was 5
level: 0