protected function ProjectServiceContainer::getFooService in Service Container 7.2
Same name in this branch
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooService()
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooService()
Same name and namespace in other branches
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooService()
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooService()
Gets the 'foo' service.
This service is shared. This method always returns the same instance of the service.
Return value
\Bar\FooClass A Bar\FooClass instance.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Fixtures/ php/ services9_compiled.php, line 168
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getFooService() {
$a = $this
->get('foo.baz');
$this->services['foo'] = $instance = \Bar\FooClass::getInstance('foo', $a, array(
'bar' => 'foo is bar',
'foobar' => 'bar',
), true, $this);
$instance
->setBar($this
->get('bar'));
$instance
->initialize();
$instance->foo = 'bar';
$instance->moo = $a;
$instance->qux = array(
'bar' => 'foo is bar',
'foobar' => 'bar',
);
sc_configure($instance);
return $instance;
}