You are here

public function Container::getServiceIds in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Container.php \Symfony\Component\DependencyInjection\Container::getServiceIds()
  2. 8 core/lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::getServiceIds()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::getServiceIds()

Gets all defined service IDs.

Return value

array An array of all defined service IDs.

File

core/lib/Drupal/Component/DependencyInjection/Container.php, line 625
Contains \Drupal\Component\DependencyInjection\Container.

Class

Container
Provides a container optimized for Drupal's needs.

Namespace

Drupal\Component\DependencyInjection

Code

public function getServiceIds() {
  return array_keys($this->serviceDefinitions + $this->services);
}