Skip to content

Commit 34ac185

Browse files
committed
Add error to baseline and update config to remove deprecated settings.
1 parent c1478ff commit 34ac185

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

phpstan-baseline.neon

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
parameters:
2-
ignoreErrors:
2+
ignoreErrors:
3+
-
4+
message: "#^Parameter \\#2 \\$callback of function array_filter expects \\(callable\\(mixed\\)\\: bool\\)\\|null, 'intval' given\\.$#"
5+
count: 1
6+
path: src/Controller/Admin/DataObject/ClassificationstoreController.php

phpstan.neon

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
parameters:
22
level: 6
33
reportUnmatchedIgnoredErrors: false
4-
checkMissingIterableValueType: false
5-
checkGenericClassInNonGenericObjectType: false
4+
ignoreErrors:
5+
-
6+
identifier: missingType.iterableValue
7+
-
8+
identifier: missingType.generics
69
paths:
710
- src
811
bootstrapFiles:

0 commit comments

Comments
 (0)