From 88e94557fb69b149eb0921b662bba9608d52ddc0 Mon Sep 17 00:00:00 2001 From: zino Date: Fri, 21 Nov 2025 10:49:23 +0100 Subject: [PATCH] Do not ignore staticMethod.dynamicCall by default --- phpstan.neon | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpstan.neon b/phpstan.neon index b5a314e..696efb8 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -24,8 +24,7 @@ parameters: ignoreErrors: # It seems PHPStan > v2 cannot see Laravel's magic call methods in its static analysis, leading to # false positives "dynamic call to static method" errors. - - - identifier: staticMethod.dynamicCall + #- identifier: staticMethod.dynamicCall # By default, PHPStan stores its cache files in sys_get_temp_dir() . '/phpstan' (usually /tmp/phpstan). You can override this by setting the tmpDir parameter. You can set this in extension settings as well. #tmpDir: /mnt/ramdisk