-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathphpstan-baseline.neon
More file actions
61 lines (52 loc) · 1.64 KB
/
phpstan-baseline.neon
File metadata and controls
61 lines (52 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
parameters:
ignoreErrors:
-
message: '#^Property Nette\\Neon\\Node\\EntityChainNode\:\:\$chain \(list\<Nette\\Neon\\Node\\EntityNode\>\) does not accept non\-empty\-list\<Nette\\Neon\\Node\>\.$#'
identifier: assign.propertyType
count: 1
path: src/Neon/Encoder.php
-
message: '#^Strict comparison using \=\=\= between int\<0, max\> and false will always evaluate to false\.$#'
identifier: identical.alwaysFalse
count: 1
path: src/Neon/Lexer.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: src/Neon/Node.php
-
message: '#^Binary operation "\*" between string and 1 results in an error\.$#'
identifier: binaryOp.invalid
count: 1
path: src/Neon/Node/LiteralNode.php
-
message: '#^Result of \|\| is always true\.$#'
identifier: booleanOr.alwaysTrue
count: 1
path: src/Neon/Node/LiteralNode.php
-
message: '#^Strict comparison using \=\=\= between null and null will always evaluate to true\.$#'
identifier: identical.alwaysTrue
count: 1
path: src/Neon/Node/LiteralNode.php
-
message: '#^If condition is always true\.$#'
identifier: if.alwaysTrue
count: 1
path: src/Neon/Parser.php
-
message: '#^Unreachable statement \- code above always terminates\.$#'
identifier: deadCode.unreachable
count: 1
path: src/Neon/Parser.php
-
message: '#^While loop condition is always false\.$#'
identifier: while.alwaysFalse
count: 1
path: src/Neon/Parser.php
-
message: '#^While loop condition is always true\.$#'
identifier: while.alwaysTrue
count: 1
path: src/Neon/Parser.php