protected function ProjectServiceContainer::getFooWithInlineService in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooWithInlineService()
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooWithInlineService()
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getFooWithInlineService()
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooWithInlineService()
Gets the 'foo_with_inline' service.
This service is shared. This method always returns the same instance of the service.
Return value
File
- vendor/
symfony/ dependency-injection/ Tests/ Fixtures/ php/ services9.php, line 220
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getFooWithInlineService() {
$this->services['foo_with_inline'] = $instance = new \Foo();
$instance
->setBar($this
->get('inlined'));
return $instance;
}