public function ModifyServiceDefinitionsPass::process in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Core/DependencyInjection/Compiler/ModifyServiceDefinitionsPass.php \Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass::process()
You can modify the container here before it is dumped to PHP code.
@api
Parameters
ContainerBuilder $container:
Overrides CompilerPassInterface::process
File
- lib/
Drupal/ Core/ DependencyInjection/ Compiler/ ModifyServiceDefinitionsPass.php, line 23 - Contains \Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass.
Class
- ModifyServiceDefinitionsPass
- Passes the container to the alter() method of all service providers.
Namespace
Drupal\Core\DependencyInjection\CompilerCode
public function process(ContainerBuilder $container) {
if (!$container
->has('kernel')) {
return;
}
$kernel = $container
->get('kernel');
if (!$kernel instanceof DrupalKernelInterface) {
return;
}
$providers = $kernel
->getServiceProviders('app');
foreach ($providers as $provider) {
if ($provider instanceof ServiceModifierInterface) {
$provider
->alter($container);
}
}
$providers = $kernel
->getServiceProviders('site');
foreach ($providers as $provider) {
if ($provider instanceof ServiceModifierInterface) {
$provider
->alter($container);
}
}
}