-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathphpstan.neon
More file actions
36 lines (35 loc) · 1.08 KB
/
phpstan.neon
File metadata and controls
36 lines (35 loc) · 1.08 KB
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
30
31
32
33
34
35
36
parameters:
level: 7
paths:
- src
- tests
reportUnmatchedIgnoredErrors: false
checkMissingOverrideMethodAttribute: true
tipsOfTheDay: false
treatPhpDocTypesAsCertain: false
ignoreErrors:
- identifier: missingType.iterableValue
paths:
- src/Encryption.php
- src/MessageSentReport.php
- src/Notification.php
- src/Subscription.php
- src/Utils.php
- src/VAPID.php
- src/WebPush.php
- path: tests/
identifiers:
- argument.type
- closure.unusedUse
- foreach.valueOverwrite
- missingType.iterableValue
- property.dynamicName
- staticMethod.dynamicCall
strictRules:
booleansInConditions: false
disallowedEmpty: false
includes:
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon