-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
43 lines (37 loc) · 1.34 KB
/
Copy pathphpstan-baseline.neon
File metadata and controls
43 lines (37 loc) · 1.34 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
37
38
39
40
41
42
43
parameters:
ignoreErrors:
-
message: '#^Loose comparison using \=\= between 11 and 11 will always evaluate to true\.$#'
identifier: equal.alwaysTrue
count: 1
path: src/Parse.php
-
message: '#^Loose comparison using \=\= between 4 and 6\|7\|11 will always evaluate to false\.$#'
identifier: equal.alwaysFalse
count: 1
path: src/Parse.php
-
message: '#^Method Email\\Parse\:\:parse\(\) return type has no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: src/Parse.php
-
message: '#^Strict comparison using \=\=\= between 4 and 7 will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 1
path: src/Parse.php
-
message: '#^Method Email\\Tests\\ParseTest\:\:buildOptions\(\) has parameter \$test with no value type specified in iterable type array\.$#'
identifier: missingType.iterableValue
count: 1
path: tests/ParseTest.php
-
message: '#^Method Email\\Tests\\ParseTest\:\:testParseEmailAddresses\(\) has no return type specified\.$#'
identifier: missingType.return
count: 1
path: tests/ParseTest.php
-
message: '#^Call to method PHPUnit\\Framework\\Assert\:\:assertIsBool\(\) with bool will always evaluate to true\.$#'
identifier: method.alreadyNarrowedType
count: 1
path: tests/PropertyTest.php