Skip to content

Commit

Permalink
Disable JsonThrowOnErrorRector
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwindell authored Jul 23, 2024
1 parent 7917e7e commit 4a82939
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Rector\Set\ValueObject\SetList;
use Rector\CodeQuality\Rector\If_\ExplicitBoolCompareRector;
use Rector\CodingStyle\Rector\Stmt\NewlineAfterStatementRector;
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
use Rector\Php81\Rector\ClassConst\FinalizePublicClassConstantRector;
use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;

Expand Down Expand Up @@ -38,6 +39,7 @@ function outeredgeRectorSkipDefaults() {
],

ExplicitBoolCompareRector::class,
FinalizePublicClassConstantRector::class
FinalizePublicClassConstantRector::class,
JsonThrowOnErrorRector::class
];
}

0 comments on commit 4a82939

Please sign in to comment.