Latest pint fixes

This commit is contained in:
DariusIII
2026-03-11 10:11:30 +01:00
parent 91361345ed
commit 4bca02f103
169 changed files with 754 additions and 480 deletions
+3 -2
View File
@@ -4,6 +4,7 @@ declare(strict_types=1);
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\SetList;
use RectorLaravel\Set\LaravelSetList;
return static function (RectorConfig $rectorConfig): void {
@@ -26,7 +27,7 @@ return static function (RectorConfig $rectorConfig): void {
// define sets of rules
$rectorConfig->sets([
LaravelSetList::LARAVEL_100,
\Rector\Set\ValueObject\SetList::PHP_84,
\Rector\Set\ValueObject\SetList::CODE_QUALITY,
SetList::PHP_84,
SetList::CODE_QUALITY,
]);
};