public function Container::getServiceIds in Service Container 7.2
Same name in this branch
- 7.2 lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::getServiceIds()
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Container.php \Symfony\Component\DependencyInjection\Container::getServiceIds()
Same name and namespace in other branches
- 7 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
- 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\DependencyInjectionCode
public function getServiceIds() {
return array_keys($this->serviceDefinitions + $this->services);
}