-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
63 lines (52 loc) · 1.39 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
parameters:
level: max
paths:
- src
- tests
ignoreErrors:
-
identifier: method.impossibleType
paths:
- tests/AssertIfFalseTest.php
-
identifier: function.impossibleType
paths:
- tests/AssertIfFalseTest.php
-
identifier: assert.alreadyNarrowedType
paths:
- tests/AssertIfFalseTest.php
- tests/AssertIfTrueTest.php
- tests/AssertTest.php
-
identifier: method.alreadyNarrowedType
paths:
- tests/AssertIfTrueTest.php
-
identifier: function.alreadyNarrowedType
paths:
- tests/AssertIfTrueTest.php
-
identifier: constructor.unusedParameter
paths:
- src/*
-
identifier: missingType.iterableValue
paths:
- tests/*
-
identifier: missingType.generics
paths:
- tests/*
-
identifier: phpDoc.parseError
paths:
- tests/*
-
identifier: possiblyImpure.methodCall
paths:
- tests/PureTest.php
-
identifier: possiblyImpure.new
paths:
- tests/PureTest.php