From 9a8834998f383cddae7fe58666e739ed8983cca1 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 13 Oct 2024 17:19:52 +0200 Subject: [PATCH] [TASK] Reorder the PHP-related steps in the `ci:static` script (#1489) Check for syntax errors with PHP lint first, then check for structural problems with Rector and PHPStan, and after that check the coding style. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index c1eb6c8..4a65349 100644 --- a/composer.json +++ b/composer.json @@ -154,11 +154,11 @@ "@ci:composer:normalize", "@ci:composer:unused", "@ci:json:lint", - "@ci:php:cs-fixer", "@ci:php:lint", "@ci:php:rector", - "@ci:php:sniff", "@ci:php:stan", + "@ci:php:cs-fixer", + "@ci:php:sniff", "@ci:typoscript:lint", "@ci:xliff:lint", "@ci:yaml:lint"