From 024f2e70b7b107d6c522d02fb86550ba1521eb51 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 6 Feb 2024 13:27:28 +0100 Subject: [PATCH] [TASK] Streamline indentation levels of phpstan.neon (#1155) There were mixed indentation levels. Those are now streamlined to level of 2. This follows the existing convention for yaml files. --- phpstan.neon | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/phpstan.neon b/phpstan.neon index f96031e..04c9377 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,10 +1,10 @@ includes: - - phpstan-baseline.neon + - phpstan-baseline.neon parameters: parallel: - # Don't be overly greedy on machines with more CPU's to be a good neighbor especially on CI - maximumNumberOfProcesses: 5 + # Don't be overly greedy on machines with more CPU's to be a good neighbor especially on CI + maximumNumberOfProcesses: 5 level: 3 @@ -22,6 +22,6 @@ parameters: - Tests type_coverage: - return_type: 100 - param_type: 100 - property_type: 95 + return_type: 100 + param_type: 100 + property_type: 95