mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-12 03:25:27 +01:00
10 lines
283 B
PHP
10 lines
283 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
||
|
$containerConfigurator->import(__DIR__ . '/twig-underscore-to-namespace.php');
|
||
|
};
|