From 04d979246e8a48bdd5ae89695a278856dad35b0d Mon Sep 17 00:00:00 2001 From: Roberto Guido Date: Sun, 15 Sep 2024 12:32:10 +0200 Subject: [PATCH] fix configurazione larastan --- code/phpstan.neon | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/phpstan.neon b/code/phpstan.neon index 4ce888cf..2c769094 100644 --- a/code/phpstan.neon +++ b/code/phpstan.neon @@ -1,5 +1,5 @@ includes: - - ./vendor/nunomaduro/larastan/extension.neon + - ./vendor/larastan/larastan/extension.neon parameters: @@ -13,11 +13,11 @@ parameters: - '#Property .* has no type specified#' - '#Function .* has parameter .* with no type specified#' - '#Function .* has no return type specified#' + - identifier: missingType.iterableValue + - identifier: missingType.generics # The level 8 is the highest level level: 6 checkModelProperties: true - checkMissingIterableValueType: false reportUnmatchedIgnoredErrors: false treatPhpDocTypesAsCertain: false - checkGenericClassInNonGenericObjectType: false