-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpsalm.xml.dist
66 lines (66 loc) · 2.44 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
<?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="src"/>
<ignoreFiles>
<directory name="doc"/>
<directory name="tests"/>
<directory name="vendor"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<InternalClass>
<errorLevel type="suppress">
<file name="src/Security/Jwt/Signer/SignerFactory.php"/>
</errorLevel>
</InternalClass>
<InvalidArgument>
<errorLevel type="suppress">
<file name="src/Security/Jwt/Configuration/ConfigurationFactory.php"/>
</errorLevel>
</InvalidArgument>
<InvalidCatch>
<errorLevel type="suppress">
<referencedClass name="Psr\Cache\CacheException"/>
<file name="src/Security/Jwks/Fetcher/JwksFetcher.php"/>
<file name="src/Security/OAuth2/Repository/AccessTokenRepository.php"/>
<file name="src/Service/Client/LtiServiceClient.php"/>
</errorLevel>
</InvalidCatch>
<InvalidThrow>
<errorLevel type="suppress">
<referencedClass name="Psr\Cache\CacheException"/>
<file name="src/Security/Nonce/NonceRepository.php"/>
</errorLevel>
</InvalidThrow>
<MissingDependency>
<errorLevel type="suppress">
<file name="src/Security/Jwt/Configuration/ConfigurationFactory.php"/>
</errorLevel>
</MissingDependency>
<TypeDoesNotContainType>
<errorLevel type="suppress">
<file name="src/Service/Server/LtiServiceServer.php"/>
</errorLevel>
</TypeDoesNotContainType>
<RedundantCondition>
<errorLevel type="suppress">
<file name="src/Message/LtiMessage.php"/>
</errorLevel>
</RedundantCondition>
</issueHandlers>
<mockClasses>
<class name="PHPUnit\Framework\MockObject\MockObject"/>
</mockClasses>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
</psalm>