-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpsalm.xml
More file actions
45 lines (45 loc) · 1.6 KB
/
psalm.xml
File metadata and controls
45 lines (45 loc) · 1.6 KB
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
<?xml version="1.0"?>
<psalm
errorLevel="6"
resolveFromConfigFile="true"
findUnusedBaselineEntry="true"
>
<stubs>
<file name="stubs/PredisClient.stub" />
<file name="stubs/RedisCluster.stub" />
<file name="stubs/RedisSentinel.stub" />
</stubs>
<projectFiles>
<directory name="src" />
<directory name="tests" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<MissingOverrideAttribute errorLevel="suppress" />
<PossiblyUnusedMethod errorLevel="suppress" />
<PossiblyUnusedReturnValue errorLevel="suppress" />
<PossiblyUnusedParam errorLevel="suppress" />
<UnusedClass errorLevel="suppress" />
<UnusedMethodCall errorLevel="suppress" />
<UnusedFunctionCall errorLevel="suppress" />
<MethodSignatureMismatch errorLevel="suppress" />
<DuplicateClass>
<errorLevel type="suppress">
<file name="tests/CacheSessionHandlerTest.php" />
</errorLevel>
</DuplicateClass>
<UndefinedThisPropertyFetch>
<errorLevel type="suppress">
<file name="tests/RedisClusterSessionHandlerTest.php" />
<file name="tests/RedisSentinelSessionHandlerTest.php" />
</errorLevel>
</UndefinedThisPropertyFetch>
<UndefinedVariable>
<errorLevel type="suppress">
<file name="tests/RedisSentinelSessionHandlerTest.php" />
</errorLevel>
</UndefinedVariable>
</issueHandlers>
</psalm>