protected function ProjectServiceContainer::getDecoratorServiceWithNameService in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getDecoratorServiceWithNameService()
- 8.0 vendor/symfony/dependency-injection/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
- vendor/
symfony/ dependency-injection/ Tests/ Fixtures/ php/ services9_compiled.php, line 142
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getDecoratorServiceWithNameService() {
return $this->services['decorator_service_with_name'] = new \stdClass();
}