-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm.xml
41 lines (38 loc) · 1.29 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" ?>
<!--
JBZoo Toolbox - Csv-Blueprint.
This file is part of the JBZoo Toolbox project.
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
@license MIT
@copyright Copyright (C) JBZoo.com, All rights reserved.
@see https://github.com/JBZoo/Csv-Blueprint
-->
<psalm
errorLevel="1"
reportMixedIssues="false"
useDocblockPropertyTypes="true"
resolveFromConfigFile="false"
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"/>
</projectFiles>
<issueHandlers>
<InvalidClassConstantType>
<errorLevel type="suppress">
<directory name="src/Rules"/>
</errorLevel>
</InvalidClassConstantType>
<TooManyArguments>
<errorLevel type="suppress">
<file name="src/Rules/Cell/Phone.php"/>
</errorLevel>
</TooManyArguments>
</issueHandlers>
<stubs>
<file name="tests/stubs/parallel.stub_php" />
</stubs>
</psalm>