-
Notifications
You must be signed in to change notification settings - Fork 10
/
psalm.xml.dist
82 lines (82 loc) · 3.51 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0"?>
<psalm
autoloader="vendor/autoload.php"
errorLevel="3"
hideExternalErrors="true"
useDocblockTypes="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="Action"/>
<directory name="DependencyInjection"/>
<directory name="Repository"/>
<directory name="Security"/>
<ignoreFiles>
<directory name="doc"/>
<directory name="Resources"/>
<directory name="Tests"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<ReservedWord>
<errorLevel type="suppress">
<file name="DependencyInjection/Configuration.php"/>
<file name="DependencyInjection/Lti1p3Extension.php"/>
</errorLevel>
</ReservedWord>
<ArgumentTypeCoercion>
<errorLevel type="suppress">
<file name="DependencyInjection/Configuration.php"/>
</errorLevel>
</ArgumentTypeCoercion>
<InternalMethod>
<errorLevel type="suppress">
</errorLevel>
</InternalMethod>
<ParamNameMismatch>
<errorLevel type="suppress">
<file name="DependencyInjection/Security/Factory/Message/LtiToolMessageSecurityFactory.php"/>
<file name="DependencyInjection/Security/Factory/Message/LtiPlatformMessageSecurityFactory.php"/>
<file name="DependencyInjection/Security/Factory/Service/LtiServiceSecurityFactory.php"/>
</errorLevel>
</ParamNameMismatch>
<PossiblyNullReference>
<errorLevel type="suppress">
<file name="DependencyInjection/Configuration.php"/>
</errorLevel>
</PossiblyNullReference>
<PossiblyUndefinedMethod>
<errorLevel type="suppress">
<file name="DependencyInjection/Configuration.php"/>
</errorLevel>
</PossiblyUndefinedMethod>
<UndefinedMethod>
<errorLevel type="suppress">
<file name="DependencyInjection/Security/Factory/Message/LtiPlatformMessageSecurityFactory.php"/>
<file name="DependencyInjection/Security/Factory/Message/LtiToolMessageSecurityFactory.php"/>
<file name="DependencyInjection/Security/Factory/Service/LtiServiceSecurityFactory.php"/>
</errorLevel>
</UndefinedMethod>
<UndefinedInterfaceMethod>
<errorLevel type="suppress">
<file name="DependencyInjection/Configuration.php"/>
</errorLevel>
</UndefinedInterfaceMethod>
<MethodSignatureMismatch>
<errorLevel type="suppress">
<file name="Security/Authentication/Token/Message/AbstractLtiMessageSecurityToken.php"/>
<file name="Security/Authentication/Token/Message/LtiToolMessageSecurityToken.php"/>
<file name="Security/Authentication/Token/Service/LtiServiceSecurityToken.php"/>
<file name="Security/Authentication/Token/Message/LtiPlatformMessageSecurityToken.php"/>
</errorLevel>
</MethodSignatureMismatch>
</issueHandlers>
<mockClasses>
<class name="PHPUnit\Framework\MockObject\MockObject"/>
</mockClasses>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
</psalm>