-
Notifications
You must be signed in to change notification settings - Fork 11
/
psalm-dev.xml
34 lines (31 loc) · 1006 Bytes
/
psalm-dev.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
<?xml version="1.0"?>
<psalm
name="SimpleSAMLphp testsuite"
useDocblockTypes="true"
errorLevel="4"
reportMixedIssues="false"
hideExternalErrors="true"
allowStringToStandInForClass="true"
>
<projectFiles>
<directory name="tests" />
<!-- Ignore certain directories -->
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<!-- Ignore UnresolvableInclude on CLI-scripts -->
<UnresolvableInclude>
<errorLevel type="suppress">
<file name="tests/bootstrap.php" />
</errorLevel>
</UnresolvableInclude>
<!-- Ignore PossiblyUndefinedGlobalVariable on metadata -->
<PossiblyUndefinedGlobalVariable>
<errorLevel type="suppress">
<file name="tests/src/test-metadata/saml20-idp-remote.php" />
</errorLevel>
</PossiblyUndefinedGlobalVariable>
</issueHandlers>
</psalm>