You are here

public function DeprecatedServicePass::process in Drupal 10

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/DependencyInjection/Compiler/DeprecatedServicePass.php \Drupal\Core\DependencyInjection\Compiler\DeprecatedServicePass::process()

File

core/lib/Drupal/Core/DependencyInjection/Compiler/DeprecatedServicePass.php, line 18

Class

DeprecatedServicePass
Sets the _deprecated_service_list parameter.

Namespace

Drupal\Core\DependencyInjection\Compiler

Code

public function process(ContainerBuilder $container) {
  $deprecated_services = [];
  foreach ($container
    ->getDefinitions() as $service_id => $definition) {
    if ($definition
      ->isDeprecated()) {
      $deprecated_services[$service_id] = $definition
        ->getDeprecation($service_id)['message'];
    }
  }
  foreach ($container
    ->getAliases() as $service_id => $definition) {
    if ($definition
      ->isDeprecated()) {
      $deprecated_services[$service_id] = $definition
        ->getDeprecation($service_id)['message'];
    }
  }
  $container
    ->setParameter('_deprecated_service_list', $deprecated_services);
}