Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberroland committed Jul 16, 2024
1 parent 9402d4f commit 0848928
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rector.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

use Rector\Config\RectorConfig;
use Rector\Php70\Rector\StaticCall\StaticCallOnNonStaticToInstanceCallRector;
use Rector\Php73\Rector\FuncCall\StringifyStrNeedlesRector;
use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\Set\ValueObject\LevelSetList;
Expand All @@ -22,7 +24,9 @@
__DIR__ . '/lam/lib/3rdParty',
NullToStrictStringFuncCallArgRector::class,
ReadOnlyPropertyRector::class,
ClassPropertyAssignToConstructorPromotionRector::class
ClassPropertyAssignToConstructorPromotionRector::class,
StaticCallOnNonStaticToInstanceCallRector::class,
StringifyStrNeedlesRector::class
])
->withFileExtensions([
'php',
Expand Down

0 comments on commit 0848928

Please sign in to comment.