Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpstan.neon.dist - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 777f0e1d7404f9d48fb6228f32b6099543d30d24 (plain)
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
27
28
29
30
31
includes:
    - phpstan-baseline.neon
parameters:
    level: max
    paths:
        - .
    scanFiles:
        - libraries/constants.php
    bootstrapFiles:
        - test/phpstan-constants.php
    stubFiles:
        - test/stubs/Query.stub
        - test/stubs/uploadprogress.stub
    excludePaths:
        - examples/openid.php
        - node_modules/*
        - libraries/cache/*
        - test/doctum-config.php
        - tmp/*
        - twig-templates/*
        - vendor/*
    dynamicConstantNames:
        - ROOT_PATH
        - VERSION_SUFFIX
    strictRules:
        # Allow non-booleans in conditions.
        booleansInConditions: false
        # Allow the empty() construct.
        disallowedConstructs: false
        # Allow dynamic calls to static methods.
        strictCalls: false