-
Notifications
You must be signed in to change notification settings - Fork 32
/
psalm.xml
26 lines (25 loc) · 1.08 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
<?xml version="1.0"?>
<psalm
autoloader="autoload-ci.php"
>
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
<directory name="tests" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<MoreSpecificImplementedParamType errorLevel="suppress" /><!-- this is fine -->
<RedundantConditionGivenDocblockType errorLevel="suppress" /><!-- we're being explicit -->
<RedundantCastGivenDocblockType errorLevel="suppress" /><!-- we're being explicit -->
<InternalMethod errorLevel="suppress" /><!-- it's internal to sodium_compat but we still need to use it -->
<DocblockTypeContradiction errorLevel="info" /><!-- We're still supporting PHP 5 -->
<UnnecessaryVarAnnotation errorLevel="suppress" />
<UnusedFunctionCall errorLevel="info" />
<UnusedVariable errorLevel="info" />
<RedundantCast errorLevel="suppress" />
<MixedReturnTypeCoercion errorLevel="info" />
<UnresolvableInclude errorLevel="info" />
</issueHandlers>
</psalm>