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.php, line 167
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getFooService() {
$a = $this
->get('foo.baz');
$this->services['foo'] = $instance = \Bar\FooClass::getInstance('foo', $a, array(
$this
->getParameter('foo') => 'foo is ' . $this
->getParameter('foo') . '',
'foobar' => $this
->getParameter('foo'),
), true, $this);
$instance
->setBar($this
->get('bar'));
$instance
->initialize();
$instance->foo = 'bar';
$instance->moo = $a;
$instance->qux = array(
$this
->getParameter('foo') => 'foo is ' . $this
->getParameter('foo') . '',
'foobar' => $this
->getParameter('foo'),
);
sc_configure($instance);
return $instance;
}