-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathphpstan.neon.dist
36 lines (36 loc) · 1.21 KB
/
phpstan.neon.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
parameters:
level: 9
paths:
- ./examples
reportUnmatchedIgnoredErrors: false
ignoreErrors:
-
message: '#Instantiated class Swoole\\Coroutine\\Lock not found\.#'
path: ./examples/locks/lock-across-coroutines.php
-
message: '#Call to method \w+\(\) on an unknown class Swoole\\Coroutine\\Lock\.#'
path: ./examples/locks/lock-across-coroutines.php
-
identifier: if.alwaysTrue
path: ./examples/locks/lock-across-coroutines.php
-
identifier: if.alwaysFalse
path: ./examples/locks/lock-across-coroutines.php
-
identifier: deadCode.unreachable
path: ./examples/locks/lock-across-coroutines.php
-
message: '#Instantiated class Swoole\\Thread(\\.+)? not found\.#'
path: ./examples/locks/lock-across-threads.php
-
message: '#Call to( static)? method \w+\(\) on an unknown class Swoole\\Thread\.#'
path: ./examples/locks/lock-across-threads.php
-
identifier: if.alwaysTrue
path: ./examples/locks/lock-across-threads.php
-
identifier: if.alwaysFalse
path: ./examples/locks/lock-across-threads.php
-
identifier: deadCode.unreachable
path: ./examples/locks/lock-across-threads.php