forked from mittwald/vaultPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpsalm.xml
More file actions
23 lines (21 loc) · 717 Bytes
/
psalm.xml
File metadata and controls
23 lines (21 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<psalm
totallyTyped="false"
allowPhpStormGenerics="true"
allowStringToStandInForClass="true"
findUnusedBaselineEntry="true"
findUnusedCode="false"
xmlns="https://getpsalm.org/schema/config"
>
<projectFiles>
<directory name="src" />
</projectFiles>
<issueHandlers>
<!-- can't do this while still supporting PHP 5 -->
<MissingParamType errorLevel="suppress" />
<MissingClosureReturnType errorLevel="suppress" />
<!-- more checks than necessary don't hurt -->
<RedundantConditionGivenDocblockType errorLevel="suppress" />
<DocblockTypeContradiction errorLevel="suppress" />
</issueHandlers>
</psalm>