rector/config/set/nette-control-to-symfony-controller.php
2021-04-23 18:14:51 +00:00

12 lines
397 B
PHP

<?php
declare(strict_types=1);
use Rector\NetteToSymfony\Rector\Class_\NetteControlToSymfonyControllerRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();
$services->set(NetteControlToSymfonyControllerRector::class);
};