-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
24 lines (24 loc) · 901 Bytes
/
phpstan.neon
File metadata and controls
24 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
parameters:
level: 6
paths:
- src
tmpDir: .phpstan-cache
reportUnmatchedIgnoredErrors: false
ignoreErrors:
# Missing iterable value type (too noisy at level 6)
-
identifier: missingType.iterableValue
# Redis extension return types include Redis|int|false union
-
message: '#Comparison operation .+ between \(int\|Redis\|false\) and 0#'
paths:
- src/Cache/RedisCacheAdapter.php
-
message: '#Comparison operation .+ between \(bool\|int\|Redis\) and 0#'
paths:
- src/Cache/RedisCacheAdapter.php
# React\Promise\PromiseInterface generic varies between v2 (not generic) and v3 (generic)
-
message: '#generic interface React\\Promise\\PromiseInterface#'
paths:
- src/UltimateLinkChecker.php