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

psalm.xml - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10c444f18c308fa5162a5e8ae64063306eb657ca (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0"?>
<psalm
    autoloader="test/bootstrap-static.php"
    totallyTyped="false"
    resolveFromConfigFile="true"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="https://getpsalm.org/schema/config"
    xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
    errorBaseline="psalm-baseline.xml"
>
    <projectFiles>
        <directory name="libraries" />
        <ignoreFiles>
            <directory name="vendor" />
            <directory name="libraries/cache" />
        </ignoreFiles>
    </projectFiles>

    <issueHandlers>
        <InternalMethod errorLevel="info" />
        <MissingClosureReturnType errorLevel="info" />
        <MissingPropertyType errorLevel="info" />
        <PropertyNotSetInConstructor errorLevel="info" />

        <MissingConstructor>
            <errorLevel type="suppress">
                <file name="libraries/classes/Properties/Plugins/ExportPluginProperties.php" />
            </errorLevel>
        </MissingConstructor>

        <RedundantCondition errorLevel="info" />

        <DocblockTypeContradiction errorLevel="info" />
        <RedundantConditionGivenDocblockType errorLevel="info" />

        <UnresolvableInclude>
            <errorLevel type="suppress">
                <file name="libraries/classes/Display/Results.php" />
                <file name="libraries/classes/Plugins.php" />
                <file name="libraries/classes/Controllers/Table/ReplaceController.php" />
                <file name="libraries/classes/Controllers/ImportController.php" />
                <file name="libraries/classes/Config.php" />
            </errorLevel>
        </UnresolvableInclude>

        <RawObjectIteration>
            <errorLevel type="suppress">
                <file name="libraries/classes/Plugins/Export/ExportSql.php" />
            </errorLevel>
        </RawObjectIteration>

        <PossiblyUndefinedGlobalVariable>
            <errorLevel type="suppress">
                <file name="libraries/config.default.php" />
            </errorLevel>
        </PossiblyUndefinedGlobalVariable>

        <InvalidGlobal>
            <errorLevel type="suppress">
                <file name="libraries/common.inc.php" />
            </errorLevel>
        </InvalidGlobal>

        <InvalidStringClass>
            <errorLevel type="suppress">
                <file name="libraries/common.inc.php" />
                <file name="libraries/classes/TwoFactor.php" />
                <file name="libraries/classes/Plugins.php" />
                <file name="libraries/classes/Navigation/NodeFactory.php" />
                <file name="libraries/classes/Config/PageSettings.php" />
                <file name="libraries/classes/Config/Forms/BaseFormList.php" />
            </errorLevel>
        </InvalidStringClass>
    </issueHandlers>
</psalm>