From 0e906eb981775ab8d3553692e0072ee034361017 Mon Sep 17 00:00:00 2001 From: Marcus Quinn <6428977+marcusquinn@users.noreply.github.com> Date: Mon, 16 Mar 2026 22:44:38 +0000 Subject: [PATCH] fix: remove redundant excludePaths.analyse block in phpstan.neon (#52) Addresses CodeRabbit review feedback from PR #13. The excludePaths section had both 'analyse' and 'analyseAndScan' with identical paths, which is redundant. Since analyseAndScan is the superset (excludes from both analysis and file scanning), the 'analyse' block is unnecessary. Closes #44 --- phpstan.neon | 7 ------- 1 file changed, 7 deletions(-) diff --git a/phpstan.neon b/phpstan.neon index a885882..6ab7cde 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -5,13 +5,6 @@ parameters: - admin - wp-plugin-starter-template.php excludePaths: - analyse: - - vendor - - node_modules - - tests - - bin - - build - - dist analyseAndScan: - vendor - node_modules