-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathphpstan.neon
More file actions
29 lines (24 loc) · 575 Bytes
/
phpstan.neon
File metadata and controls
29 lines (24 loc) · 575 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
25
26
27
28
29
parameters:
level: 8
paths:
- src
ignoreErrors:
# intentional: allows subclassing Feed
-
identifier: new.static
path: src/Feed.php
# toArray() returns recursive mixed structure
-
identifier: missingType.iterableValue
count: 1
path: src/Feed.php
# runtime-safe: $arr[$tag] is always array when count > 1
-
identifier: offsetAssign.dimType
count: 1
path: src/Feed.php
# curl_setopt expects non-empty-string, but url and userAgent are always non-empty at runtime
-
identifier: argument.type
count: 2
path: src/Feed.php