-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
psalm.xml.dist
45 lines (45 loc) · 1.46 KB
/
psalm.xml.dist
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
cacheDirectory="./build/psalm/"
errorBaseline="psalm-baseline.xml"
errorLevel="4"
findUnusedBaselineEntry="true"
findUnusedCode="false"
findUnusedVariablesAndParams="true"
resolveFromConfigFile="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
>
<projectFiles>
<directory name="src"/>
<ignoreFiles>
<directory name="vendor"/>
<!--<file name="src/Foundation/Testing/MockHandler.php"/>-->
</ignoreFiles>
</projectFiles>
<issueHandlers>
<PropertyNotSetInConstructor errorLevel="info"/>
<UndefinedThisPropertyFetch>
<errorLevel type="suppress">
<!--<directory name="src/Foundation/Concerns"/>-->
<file name="src/Foundation/Concerns/HasOptions.php"/>
</errorLevel>
</UndefinedThisPropertyFetch>
<InaccessibleProperty>
<errorLevel type="suppress">
<file name="src/Foundation/Response.php"/>
</errorLevel>
</InaccessibleProperty>
</issueHandlers>
<plugins>
<!--<pluginClass class="Psalm\LaravelPlugin\Plugin"/>-->
</plugins>
<!--<files psalm-version="5.23.0@005e3184fb6de4350a873b9b8c4dc3cede9db762">
<file src="src/Foundation/Concerns/HasHttpClient.php">
<UndefinedConstant>
<code><![CDATA[MULTIPART_TRY_OPEN_FILE]]></code>
</UndefinedConstant>
</file>
</files>-->
</psalm>