-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpstan.neon
More file actions
17 lines (17 loc) · 614 Bytes
/
phpstan.neon
File metadata and controls
17 lines (17 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
parameters:
level: 8
paths:
- src
- tests
ignoreErrors:
-
identifier: missingType.generics
-
message: '#type has no value type specified in iterable type array#'
path: tests/
-
message: '#type has no value type specified in iterable type iterable#'
path: tests/
# PHPStan is overly aggressive on readonly properties.
- '#Class (.*) has an uninitialized readonly property (.*). Assign it in the constructor.#'
- '#Readonly property (.*) is assigned outside of the constructor.#'