Skip to content

Commit

Permalink
Migrate deprecated PHPStan configuration options
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSiepmann committed Jun 26, 2024
1 parent 0c90197 commit 982dac7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Documentation/Changelog/4.0.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Fixes
* Add missing dependency to composer package `typo3/cms-install`.
As UpgradeWizards use API of the package.

* Migrate deprecated PHPStan configuration options.

Tasks
-----

Expand Down
18 changes: 11 additions & 7 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
includes:
- phpstan-baseline.neon
parameters:
level: max
paths:
- Classes
- Configuration
checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false
reportUnmatchedIgnoredErrors: true
level: max
paths:
- Classes
- Configuration
reportUnmatchedIgnoredErrors: true

ignoreErrors:
-
identifier: missingType.generics
-
identifier: missingType.iterableValue

0 comments on commit 982dac7

Please sign in to comment.