Skip to content

Commit

Permalink
[CS] Fix codestyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Dec 27, 2024
1 parent aac21fe commit 7c5f060
Show file tree
Hide file tree
Showing 5 changed files with 757 additions and 737 deletions.
3 changes: 2 additions & 1 deletion build/phprectorconfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

declare(strict_types=1);

use Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\ClassMethod\RemoveUselessParamTagRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveUselessReturnTagRector;
Expand All @@ -27,7 +28,7 @@
SetList::CODING_STYLE,
])
->withParallel(60 * 5, 12, 16)
->withConfiguredRule(\Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector::class, [
->withConfiguredRule(EncapsedStringsToSprintfRector::class, [
'always' => true,
])
->withRules([
Expand Down
Loading

0 comments on commit 7c5f060

Please sign in to comment.