Skip to content

Commit b654dfb

Browse files
committed
Fix error ignores on old PHP versions
1 parent 216900e commit b654dfb

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

phpstan.neon

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ parameters:
99
- '#Symfony\\Component\\Config\\Definition\\Builder#'
1010

1111
# Silence some errors until config modernization is complete
12-
- '#EntityManager::getRepository#'
13-
- '#Mapping\\ClassMetadata>#'
12+
-
13+
message: '#EntityManager::getRepository#'
14+
reportUnmatched: false
15+
-
16+
message: '#Mapping\\ClassMetadata>#'
17+
reportUnmatched: false
1418

1519
# New PHPStan 2 errors
1620
- { identifier: missingType.generics }

0 commit comments

Comments
 (0)