-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
42 lines (31 loc) · 835 Bytes
/
phpstan.neon
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
37
38
39
40
41
42
includes:
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
- vendor/tomasvotruba/type-coverage/config/extension.neon
- vendor/tomasvotruba/cognitive-complexity/config/extension.neon
- phpstan.baseline.neon
parameters:
level: max
reportUnmatchedIgnoredErrors: false
reportWrongPhpDocTypeInVarTag: true
treatPhpDocTypesAsCertain: false
checkMissingCallableSignature: true
type_coverage:
return_type: 88
param_type: 86
property_type: 93
constant: 95
declare: 100
cognitive_complexity:
class: 50
function: 8
paths:
- _
- tests
excludePaths:
- _/Formular/Template/*
bootstrapFiles:
- tests/bootstrap.php
parallel:
processTimeout: 30.0