-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpstan.neon
41 lines (34 loc) · 1022 Bytes
/
phpstan.neon
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
includes:
- vendor/contributte/phpstan/phpstan.neon
parameters:
level: 9
phpVersion: 80100
scanDirectories:
- src
fileExtensions:
- php
paths:
- src
- .docs
ignoreErrors:
-
message: """
#^Fetching class constant class of deprecated class Doctrine\\\\Common\\\\Cache\\\\ApcuCache\\:
Deprecated without replacement in doctrine/cache 1\\.11\\. This class will be dropped in 2\\.0$#
"""
count: 2
path: src/DI/CacheExtension.php
-
message: """
#^Fetching class constant class of deprecated class Doctrine\\\\Common\\\\Cache\\\\ArrayCache\\:
Deprecated without replacement in doctrine/cache 1\\.11\\. This class will be dropped in 2\\.0$#
"""
count: 2
path: src/DI/CacheExtension.php
-
message: """
#^Fetching class constant class of deprecated class Doctrine\\\\Common\\\\Cache\\\\PhpFileCache\\:
Deprecated without replacement in doctrine/cache 1\\.11\\. This class will be dropped in 2\\.0$#
"""
count: 2
path: src/DI/CacheExtension.php