rector/rule-doc-generator.php
Tomas Votruba 8d92c466fd
[DX] Use RectorConfig in configs (#2063)
* use RectorConfig in configs

* update variable name

* remove extra spaces

* apply on configs

* apply on e2e

* update markdown files

* remove extra spaces
2022-04-12 13:46:07 +02:00

16 lines
394 B
PHP

<?php
declare(strict_types=1);
use Rector\RuleDocGenerator\Category\RectorCategoryInferer;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $rectorConfig): void {
$services = $rectorConfig->services();
$services->defaults()
->autowire();
$services->set(RectorCategoryInferer::class);
};