From 321664cf8f402fafef6d852c946ee3e8345f9cc0 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 17 Oct 2024 11:56:05 +0200 Subject: [PATCH] [TASK] Migrate deprecated phpstan options --- Build/phpstan.neon | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Build/phpstan.neon b/Build/phpstan.neon index d820ac27..215bf02c 100644 --- a/Build/phpstan.neon +++ b/Build/phpstan.neon @@ -7,11 +7,13 @@ includes: parameters: level: 8 - checkMissingIterableValueType: false reportUnmatchedIgnoredErrors: false - checkGenericClassInNonGenericObjectType: false ignoreErrors: + - + identifier: missingType.iterableValue + - + identifier: missingType.generics - "#Casting to string something that's already string.#" - "#Casting to int something that's already int.#" - "#Casting to bool something that's already bool.#"