-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpsalm.xml
57 lines (56 loc) · 2.14 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<psalm
errorLevel="7"
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/DependencyInjection/Configuration.php"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<InvalidCatch>
<errorLevel type="suppress">
<referencedClass name="Netzmacht\Workflow\Exception\WorkflowException"/>
</errorLevel>
</InvalidCatch>
<UndefinedFunction>
<errorLevel type="suppress">
<referencedFunction name="array_insert"/>
</errorLevel>
</UndefinedFunction>
<InternalMethod>
<errorLevel type="suppress">
<referencedMethod name="Contao\CoreBundle\Framework\Adapter::__call"/>
</errorLevel>
</InternalMethod>
<TooManyArguments>
<errorLevel type="suppress">
<referencedFunction name="Symfony\Contracts\EventDispatcher\EventDispatcherInterface::dispatch"/>
</errorLevel>
</TooManyArguments>
<DeprecatedMethod>
<errorLevel type="suppress">
<referencedMethod name="Doctrine\DBAL\Connection::getSchemaManager"/>
<referencedMethod name="Doctrine\DBAL\Query\QueryBuilder::execute"/>
<referencedMethod name="Doctrine\DBAL\Schema\Schema::getMigrateToSql"/>
</errorLevel>
</DeprecatedMethod>
<UndefinedDocblockClass>
<errorLevel type="suppress">
<referencedClass name="UnitEnum"/>
</errorLevel>
</UndefinedDocblockClass>
</issueHandlers>
<universalObjectCrates>
<!-- allow magic property access -->
<class name="Contao\BackendUser"/>
<class name="Contao\Model"/>
<class name="Contao\ModuleModel"/>
</universalObjectCrates>
</psalm>