-
Notifications
You must be signed in to change notification settings - Fork 26
/
psalm.xml
26 lines (26 loc) · 1.07 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="phpunit-autoload.php"
useDocblockTypes="true"
>
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<MoreSpecificImplementedParamType errorLevel="suppress" /><!-- this is fine -->
<RedundantConditionGivenDocblockType errorLevel="suppress" /><!-- we're being explicit -->
<RedundantCastGivenDocblockType errorLevel="suppress" /><!-- we're being explicit -->
<DocblockTypeContradiction errorLevel="info" /><!-- We're still supporting PHP 5 -->
<UnnecessaryVarAnnotation errorLevel="suppress" />
<UnusedFunctionCall errorLevel="info" />
<UnusedVariable errorLevel="info" />
<RedundantCast errorLevel="suppress" />
<MixedReturnTypeCoercion errorLevel="info" />
<InternalMethod errorLevel="suppress" />
<RedundantConditionGivenDocblockType errorLevel="info" />
<UnsafeInstantiation errorLevel="info" />
</issueHandlers>
</psalm>