protected function ProjectServiceContainer::getDecoratedService in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratedService()
Gets the 'decorated' 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 115
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getDecoratedService() {
return $this->services['decorated'] = new \stdClass();
}