‪TYPO3CMS  ‪main
Services.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 namespace ‪TYPO3\CMS\Lowlevel;
6 
7 use Symfony\Component\DependencyInjection\ContainerBuilder;
8 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
9 
10 return static function (ContainerConfigurator $configurator, ContainerBuilder $containerBuilder): void {
11  $containerBuilder->addCompilerPass(
12  new DependencyInjection\ConfigurationModuleProviderPass('lowlevel.configuration.module.provider')
13  );
14 };
‪TYPO3\CMS\Lowlevel