-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
15 lines (14 loc) · 694 Bytes
/
phpstan.neon.dist
File metadata and controls
15 lines (14 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
parameters:
level: 8
tmpDir: build/phpstan
resultCachePath: %currentWorkingDirectory%/build/phpstan/resultCache.php
paths:
- src
ignoreErrors:
- '#Match expression does not handle remaining value#'
- '#has an uninitialized readonly property (.*). Assign it in the constructor.#'
- '#Readonly property (.*) is assigned outside of the constructor.#'
# I don't know what's up with this one. Need to come back to it and fix the docblock.
- '#Method (.*)::analyze\(\) should return T of object but returns object.#'
# Tests include an absurd number of classes that are by design not tricked-out, so don't
# bother checking those.