protected function ProjectServiceContainer::getBazService in Service Container 7
Same name in this branch
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getBazService()
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getBazService()
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getBazService()
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getBazService()
Gets the 'baz' service.
This service is shared. This method always returns the same instance of the service.
Return value
\Baz A Baz instance.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Fixtures/ php/ services9.php, line 81
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getBazService() {
$this->services['baz'] = $instance = new \Baz();
$instance
->setFoo($this
->get('foo_with_inline'));
return $instance;
}