DeprecatedServicePass.php
Same filename in other branches
Namespace
Drupal\Core\DependencyInjection\CompilerFile
-
core/
lib/ Drupal/ Core/ DependencyInjection/ Compiler/ DeprecatedServicePass.php
View source
<?php
namespace Drupal\Core\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
/**
* Sets the _deprecated_service_list parameter.
*
* @see \Drupal\Component\DependencyInjection\Container::get()
*/
class DeprecatedServicePass implements CompilerPassInterface {
/**
* {@inheritdoc}
*/
public function process(ContainerBuilder $container) {
$deprecated_services = [];
foreach ($container->getDefinitions() as $service_id => $definition) {
if ($definition->isDeprecated()) {
// @todo: remove when Drupal requires Symfony 5. See
// https://www.drupal.org/project/drupal/issues/3197482
if (method_exists($definition, 'getDeprecation')) {
$deprecated_services[$service_id] = $definition->getDeprecation($service_id)['message'];
}
else {
$deprecated_services[$service_id] = $definition->getDeprecationMessage($service_id);
}
}
}
foreach ($container->getAliases() as $service_id => $definition) {
if ($definition->isDeprecated()) {
// @todo: remove when Drupal requires Symfony 5. See
// https://www.drupal.org/project/drupal/issues/3197482
if (method_exists($definition, 'getDeprecation')) {
$deprecated_services[$service_id] = $definition->getDeprecation($service_id)['message'];
}
else {
$deprecated_services[$service_id] = $definition->getDeprecationMessage($service_id);
}
}
}
$container->setParameter('_deprecated_service_list', $deprecated_services);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
DeprecatedServicePass | Sets the _deprecated_service_list parameter. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.