Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Oct 31, 2023
1 parent 0d55d15 commit aa6d2c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

use Rector\Renaming\Rector\Name\RenameClassRector;
use Rector\Config\RectorConfig;
use Rector\Php80\Rector\Class_\AnnotationToAttributeRector;
use Rector\Php80\ValueObject\AnnotationToAttribute;
use Rector\Renaming\Rector\Name\RenameClassRector;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->importNames();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@
use Rector\Php70\Rector\Break_\BreakNotInLoopOrSwitchToReturnRector;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->rules([
BreakNotInLoopOrSwitchToReturnRector::class,
ContinueToBreakInSwitchRector::class,
]);
$rectorConfig->rules([BreakNotInLoopOrSwitchToReturnRector::class, ContinueToBreakInSwitchRector::class]);
};

0 comments on commit aa6d2c3

Please sign in to comment.