mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 19:24:48 +01:00
* move out repository * decouple GenericTypeSpecifier, add case with specific type pass * decouple ExtendsTemplateTypeMapFallbackFactory * [ci-review] Rector Rectify Co-authored-by: rector-bot <tomas@getrector.org>
18 lines
491 B
PHP
18 lines
491 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$services = $containerConfigurator->services();
|
|
|
|
$services->defaults()
|
|
->public()
|
|
->autowire()
|
|
->autoconfigure();
|
|
|
|
$services->load('Rector\Generics\\', __DIR__ . '/../src')
|
|
->exclude([__DIR__ . '/../src/Rector', __DIR__ . '/../src/ValueObject']);
|
|
};
|