-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathphpstan.neon
More file actions
29 lines (23 loc) · 690 Bytes
/
phpstan.neon
File metadata and controls
29 lines (23 loc) · 690 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
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-nette/extension.neon
- vendor/phpstan/phpstan-nette/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- phpstan-baseline.neon
parameters:
level: 9
phpVersion: 70200
scanDirectories:
- src
fileExtensions:
- php
paths:
- src
ignoreErrors:
- '#^Variable property access on#'
- '#^Anonymous function should have native return typehint#'
- '#^Parameter \#1 \$(callback|function) of function call_user_func_array expects#'
- '#Nette\\Schema#'
checkMissingIterableValueType: false
reportUnmatchedIgnoredErrors: false
checkGenericClassInNonGenericObjectType: false