File: phpstan.neon

package info (click to toggle)
php-league-csv 9.23.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 39,720 kB
  • sloc: php: 13,345; javascript: 80; makefile: 29; xml: 29
file content (26 lines) | stat: -rw-r--r-- 939 bytes parent folder | download
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
26
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