From 7e2e2aea2dc455e0288fdea3e89e673a549920f4 Mon Sep 17 00:00:00 2001 From: Henning <leutz@pcsg.de> Date: Sat, 22 Feb 2025 16:59:25 +0100 Subject: [PATCH] chore(phpstan): exclude problematic file from phpstan analysis This commit modifies the phpstan.dist.neon to exclude the DigitalCouponProductType.php file from being analyzed by PHPStan. This was necessary due to consistent unresolvable errors. --- phpstan.dist.neon | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/phpstan.dist.neon b/phpstan.dist.neon index 18db987..cab6bd0 100644 --- a/phpstan.dist.neon +++ b/phpstan.dist.neon @@ -7,4 +7,6 @@ parameters: - src - ajax bootstrapFiles: - - tests/phpstan-bootstrap.php \ No newline at end of file + - tests/phpstan-bootstrap.php + excludePaths: + - src/QUI/ERP/Coupons/Products/DigitalCouponProductType.php -- GitLab