-
Notifications
You must be signed in to change notification settings - Fork 93
/
phpstan-baseline.neon
36 lines (30 loc) · 1.27 KB
/
phpstan-baseline.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
parameters:
ignoreErrors:
-
message: "#^Binary operation \"\\+\" between non\\-empty\\-string and 0 results in an error\\.$#"
count: 1
path: src/Core/Parser/TemplateParser.php
-
message: "#^Property TYPO3Fluid\\\\Fluid\\\\Core\\\\Rendering\\\\RenderingContext\\:\\:\\$errorHandler \\(TYPO3Fluid\\\\Fluid\\\\Core\\\\ErrorHandler\\\\ErrorHandlerInterface\\) in isset\\(\\) is not nullable\\.$#"
count: 1
path: src/Core/Rendering/RenderingContext.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
path: src/Core/ViewHelper/AbstractConditionViewHelper.php
-
message: "#^Else branch is unreachable because previous condition is always true\\.$#"
count: 1
path: src/Core/ViewHelper/AbstractViewHelper.php
-
message: "#^Strict comparison using \\=\\=\\= between class\\-string and false will always evaluate to false\\.$#"
count: 1
path: src/Core/ViewHelper/ViewHelperResolver.php
-
message: "#^Variable \\$iterationData might not be defined\\.$#"
count: 1
path: src/ViewHelpers/ForViewHelper.php
-
message: "#^Unreachable statement \\- code above always terminates\\.$#"
count: 1
path: tests/Functional/ViewHelpers/StaticCacheable/NotSharedStaticCompilableViewHelperTest.php