protected function ProjectServiceContainer::getFooService in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooService()
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooService()
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooService()
- 8 vendor/symfony/dependency-injection/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
- vendor/
symfony/ dependency-injection/ 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;
}