Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Container.php

function Container::getServiceAlternatives

Provides alternatives in case a service was not found.

Parameters

string $id: The service to get alternatives for.

Return value

string[] An array of strings with suitable alternatives.

1 call to Container::getServiceAlternatives()
Container::get in core/lib/Drupal/Component/DependencyInjection/Container.php
@template B of self::*_REFERENCE

File

core/lib/Drupal/Component/DependencyInjection/Container.php, line 522

Class

Container
Provides a container optimized for Drupal's needs.

Namespace

Drupal\Component\DependencyInjection

Code

protected function getServiceAlternatives($id) {
    $all_service_keys = array_unique(array_merge(array_keys($this->services), array_keys($this->serviceDefinitions)));
    return $this->getAlternatives($id, $all_service_keys);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal