protected function ProjectServiceContainer::getFoo_BazService in Service Container 7
Same name in this branch
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ProjectServiceContainer::getFoo_BazService()
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFoo_BazService()
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFoo_BazService()
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::getFoo_BazService()
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFoo_BazService()
Gets the 'foo.baz' service.
This service is shared. This method always returns the same instance of the service.
Return value
object A %baz_class% instance.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Fixtures/ php/ services9.php, line 191
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getFoo_BazService() {
$this->services['foo.baz'] = $instance = call_user_func(array(
$this
->getParameter('baz_class'),
'getInstance',
));
call_user_func(array(
$this
->getParameter('baz_class'),
'configureStatic1',
), $instance);
return $instance;
}