From 5f8eeefd3bb1b07c3675b000766091d908cf6ff3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 6 Apr 2022 18:52:56 +0200 Subject: [PATCH] phpstan level fix --- quality/inspections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quality/inspections.md b/quality/inspections.md index bc8118d..77d167e 100755 --- a/quality/inspections.md +++ b/quality/inspections.md @@ -88,7 +88,7 @@ Every module needs to have a `Admin` directory containing a class called `AdminT With phpstan the code base is statically analyzed based on its configuration. This will help you to follow some of the "best" practices we enforce. ```sh -php vendor/bin/phpstan analyse --autoload-file=phpOMS/Autoloader.php -l 8 -c Build/Config/phpstan.neon --error-format=prettyJson ./ > Build/test/phpstan.json +php vendor/bin/phpstan analyse --autoload-file=phpOMS/Autoloader.php -l 9 -c Build/Config/phpstan.neon --error-format=prettyJson ./ > Build/test/phpstan.json ``` ### Jasmine