From 93d26dc1b686cc0e2f6666cd942ecf1d877e840b Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Tue, 28 May 2024 13:41:05 +0200 Subject: [PATCH] Disable some phpstan checks causing issues in current version of phpstan --- rules/phpstan-rules.neon | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rules/phpstan-rules.neon b/rules/phpstan-rules.neon index 86361e4..e83a6bc 100644 --- a/rules/phpstan-rules.neon +++ b/rules/phpstan-rules.neon @@ -80,10 +80,10 @@ parametersSchema: ]) rules: - - PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule - - PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule - - PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule - - PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule + # - PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule + # - PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule + # - PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule + # - PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule - PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule - PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule - PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule