mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
0456cc088c
* numbers * update ECS config to Symplify 9 * regenerate rules with categorize * [CI] disable automated rebase, as not working propperly * update misc
15 lines
411 B
PHP
15 lines
411 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\RuleDocGenerator\Category\RectorCategoryInferer;
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$services = $containerConfigurator->services();
|
|
$services->defaults()
|
|
->autowire();
|
|
|
|
$services->set(RectorCategoryInferer::class);
|
|
};
|