Files
firefly-iii/.ci/phpstan.neon

28 lines
834 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:
2022-10-30 14:34:36 +01:00
- '#is not allowed to extend#'
- '#is neither abstract nor final#'
- '#has a nullable return type declaration#'
- '#with a nullable type declaration#'
-
message: '#Control structures using switch should not be used.#'
2022-10-31 05:39:22 +01:00
paths:
- ../app/Api/V1/Controllers/Data/DestroyController.php
- ../app/Console/Commands/Correction/FixAccountTypes.php
paths:
- ../app
- ../database
- ../routes
2022-10-30 12:12:35 +01:00
- ../tests
- ../bootstrap/app.php
2020-07-31 15:12:26 +02:00
# The level 8 is the highest level. original was 5
2021-04-27 06:45:11 +02:00
level: 3