-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathphpstan.neon.8.0.dist
More file actions
24 lines (23 loc) · 898 Bytes
/
phpstan.neon.8.0.dist
File metadata and controls
24 lines (23 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-doctrine/extension.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-symfony/extension.neon
#- vendor/tomasvotruba/cognitive-complexity/config/extension.neon
parameters:
level: 8
paths:
- src
- tests
excludePaths:
- vendor
ignoreErrors:
- '#Instantiated class Fiber not found#'
- '#Call to method start\(\) on an unknown class Fiber#'
- '#Call to static method suspend\(\) on an unknown class Fiber#'
# The following can be dropped once Symfony 7.0+ will be required
- '#Method .* has parameter \$context with no value type specified in iterable type array.#'
#cognitive_complexity:
# class: 50
# function: 8