-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathphpstan-baseline.neon
37 lines (32 loc) · 1.12 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
37
parameters:
ignoreErrors:
-
message: '#^Trait CrudView\\Listener\\Traits\\DeprecatedConfigurationKeyTrait is used zero times and is not analysed\.$#'
identifier: trait.unused
count: 1
path: src/Listener/Traits/DeprecatedConfigurationKeyTrait.php
-
message: '#^Cannot unset offset mixed on array\{\}\.$#'
identifier: unset.offset
count: 2
path: src/Listener/ViewListener.php
-
message: '#^Offset \(int\|string\) on array\{\} in isset\(\) does not exist\.$#'
identifier: isset.offset
count: 2
path: src/Listener/ViewListener.php
-
message: '#^Parameter \#1 \$field of method CrudView\\Listener\\ViewListener\:\:_deriveFieldFromContext\(\) expects string, list\<string\>\|string\|null given\.$#'
identifier: argument.type
count: 1
path: src/Listener/ViewListener.php
-
message: '#^Result of \|\| is always false\.$#'
identifier: booleanOr.alwaysFalse
count: 1
path: src/Listener/ViewListener.php
-
message: '#^Call to an undefined method Cake\\ORM\\Table\:\:searchManager\(\)\.$#'
identifier: method.notFound
count: 1
path: src/Listener/ViewSearchListener.php