forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm.xml
76 lines (67 loc) · 2.88 KB
/
psalm.xml
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
76
<?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/Config.php" />
<file name="libraries/classes/Controllers/ImportController.php" />
<file name="libraries/classes/Controllers/Table/ReplaceController.php" />
<file name="libraries/classes/Display/Results.php" />
<file name="libraries/classes/Plugins.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/classes/Config/Forms/BaseFormList.php" />
<file name="libraries/classes/Config/PageSettings.php" />
<file name="libraries/classes/Controllers/Setup/FormController.php" />
<file name="libraries/classes/Navigation/NodeFactory.php" />
<file name="libraries/classes/Plugins.php" />
<file name="libraries/classes/TwoFactor.php" />
<file name="libraries/common.inc.php" />
</errorLevel>
</InvalidStringClass>
</issueHandlers>
</psalm>