Skip to content

Instantly share code, notes, and snippets.

@fabyo0
Forked from JustSteveKing/rector.php
Created February 8, 2025 00:18
Show Gist options
  • Save fabyo0/538b022cd07e0653c0bd92a82b8897cb to your computer and use it in GitHub Desktop.
Save fabyo0/538b022cd07e0653c0bd92a82b8897cb to your computer and use it in GitHub Desktop.
Laravel Rector Config
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/app',
__DIR__ . '/bootstrap',
__DIR__ . '/config',
__DIR__ . '/database',
__DIR__ . '/routes',
]);
$rectorConfig->rules([
InlineConstructorDefaultToPropertyRector::class,
]);
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_83,
SetList::CODE_QUALITY,
SetList::DEAD_CODE,
SetList::EARLY_RETURN,
SetList::TYPE_DECLARATION,
SetList::PRIVATIZATION,
]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment