From 2b857d4f0067de2a8dbcaa2284463886c2c07771 Mon Sep 17 00:00:00 2001
From: Henning <leutz@pcsg.de>
Date: Thu, 27 Feb 2025 13:46:15 +0100
Subject: [PATCH] fix: remove phpstan from gitlab CI pipeline

The `.gitlab-ci.yml` file was updated to remove the `phpstan` job. This change means we will no
longer run static analysis automatically on our CI pipeline. Further discussions may be needed on
whether to replace this with another tool or integrate it differently.
---
 .gitlab-ci.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 61be412..efb42c8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,3 @@ phpunit-php8.2:
 phpunit-php8.3:
   rules:
     - when: never
-
-phpstan:
-  script:
-    - QUIQQER_OTHER_AUTOLOADERS=KEEP ./tools/phpstan --no-progress --memory-limit=-1 --debug
-- 
GitLab