-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsalm.xml
42 lines (42 loc) · 1.27 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
<?xml version="1.0"?>
<psalm
cacheDirectory="cache/psalm"
checkForThrowsDocblock="true"
ensureArrayIntOffsetsExist="true"
ensureArrayStringOffsetsExist="true"
errorLevel="1"
findUnusedBaselineEntry="true"
findUnusedVariablesAndParams="true"
findUnusedPsalmSuppress="true"
findUnusedCode="false"
ignoreInternalFunctionFalseReturn="false"
ignoreInternalFunctionNullReturn="false"
resolveFromConfigFile="false"
sealAllMethods="true"
strictBinaryOperands="true"
>
<issueHandlers>
<MissingThrowsDocblock>
<errorLevel type="suppress">
<directory name="src/Lits/Test" />
</errorLevel>
</MissingThrowsDocblock>
<PropertyNotSetInConstructor>
<errorLevel type="suppress">
<directory name="src/Lits/Data" />
</errorLevel>
</PropertyNotSetInConstructor>
<UnusedClosureParam>
<errorLevel type="suppress">
<file name="src/*.php" />
</errorLevel>
</UnusedClosureParam>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
<projectFiles>
<directory name="src"/>
<file name="*.php*"/>
</projectFiles>
</psalm>