-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpstan.neon
More file actions
20 lines (20 loc) · 805 Bytes
/
phpstan.neon
File metadata and controls
20 lines (20 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
parameters:
level: 6
paths:
- src
- tests
excludePaths:
- src/Resources/tests/*
ignoreErrors:
- '#type has no value type specified in iterable type#'
- '#has parameter .* with no value type specified in iterable type#'
- '#has no value type specified in iterable type array#'
- '#configureOptions\(\) has no return type specified.#'
- '#configure\(\) has no return type specified#'
- '#process\(\) has no return type specified#'
- '#should return Iterator but returns Traversable#'
- '#Negated boolean expression is always false#'
- identifier: missingType.generics
reportUnmatchedIgnoredErrors: false
inferPrivatePropertyTypeFromConstructor: true
treatPhpDocTypesAsCertain: false