forked from oguz463/php-gedcom
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrector.php
More file actions
22 lines (16 loc) · 717 Bytes
/
rector.php
File metadata and controls
22 lines (16 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
declare(strict_types=1);
use Rector\Php74\Rector\Property\TypedPropertyRector;
use Rector\Set\ValueObject\SetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->import(SetList::PHP_80);
// get parameters
$parameters = $containerConfigurator->parameters();
// Define what rule sets will be applied
$containerConfigurator->import(SetList::DEAD_CODE);
// get services (needed for register a single rule)
// $services = $containerConfigurator->services();
// register a single rule
// $services->set(TypedPropertyRector::class);
};