From 7a0b0eb5efcdfc11393fc46e2e78f3eafa04e0bd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 14 Jan 2024 15:33:23 +0100 Subject: [PATCH] Update inspections.md Signed-off-by: Dennis Eichhorn --- quality/inspections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quality/inspections.md b/quality/inspections.md index 7840d7d..fcde6ae 100755 --- a/quality/inspections.md +++ b/quality/inspections.md @@ -7,8 +7,8 @@ Code inspections are very important in order to maintain the same code quality t The following automated tests must pass without errors, failures and warnings for successful code changes: * `php ./vendor/bin/phpstan analyse -l 9 -c Build/Config/phpstan.neon ./` -* `php vendor/bin/php-cs-fixer fix ./ --config=Build/Config/.php-cs-fixer.php --allow-risky=yes` -* `php vendor/bin/phpcbf --standard=Build/Config/phpcs.xml ./` +* `php ./vendor/bin/php-cs-fixer fix ./ --config=Build/Config/.php-cs-fixer.php --allow-risky=yes` +* `php ./vendor/bin/phpcbf --standard=Build/Config/phpcs.xml ./` * `php ./vendor/bin/phpcs --severity=1 ./ --standard="Build/Config/phpcs.xml"` * `php ./vendor/bin/phpunit -c tests/phpunit_no_coverage.xml` * `php ./vendor/bin/rector process --config Build/Config/rector.php --dry-run ./`