You are here

protected function ProjectServiceContainer::getDecoratorServiceWithNameService in Service Container 7.2

Same name in this branch
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
  2. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratorServiceWithNameService()

Gets the 'decorator_service_with_name' service.

This service is shared. This method always returns the same instance of the service.

Return value

\stdClass A stdClass instance.

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php, line 141

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

protected function getDecoratorServiceWithNameService() {
  return $this->services['decorator_service_with_name'] = new \stdClass();
}