forked from bavix/laravel-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rector.php
31 lines (25 loc) · 1.03 KB
/
rector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
declare(strict_types=1);
use Rector\Core\Configuration\Option;
use Rector\Laravel\Set\LaravelSetList;
use Rector\Php74\Rector\Property\TypedPropertyRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\SetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
// get parameters
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [
__DIR__ . '/src',
__DIR__ . '/tests',
]);
// Define what rule sets will be applied
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_91);
$containerConfigurator->import(LaravelSetList::LARAVEL_60);
$containerConfigurator->import(SetList::DEAD_CODE);
$containerConfigurator->import(SetList::PHP_74);
// get services (needed for register a single rule)
$services = $containerConfigurator->services();
// register a single rule
$services->set(TypedPropertyRector::class);
};