-
-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathphpstan.neon
26 lines (25 loc) · 939 Bytes
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
parameters:
ignoreErrors:
- identifier: missingType.generics
- identifier: missingType.iterableValue
- '#implements deprecated interface League\\Csv\\ByteSequence#'
- '#Attribute class Deprecated does not exist.#'
- '#Parameter \#4 \$params of function stream_filter_(pre|ap)pend expects array, mixed given#'
- '#League\\Csv\\HTMLConverter:#'
- '#League\\Csv\\XMLConverter:#'
- '#Dom\\HTMLElement#'
- '#Dom\\XMLDocument#'
- '#Dom\\HTMLDocument#'
- '#Dom\\Element#'
level: max
paths:
- src
reportUnmatchedIgnoredErrors: true
treatPhpDocTypesAsCertain: false
parallel:
processTimeout: 300.0