You are here

protected function ProjectServiceContainer::getDecoratorServiceService in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceService()
  2. 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratorServiceService()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceService()
  2. 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratorServiceService()

Gets the 'decorator_service' service.

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

Return value

\stdClass A stdClass instance.

File

vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php, line 129

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

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