You are here

protected function ProjectServiceContainer::getBazService in Service Container 7.2

Same name in this branch
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getBazService()
  2. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getBazService()
Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getBazService()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getBazService()

Gets the 'baz' service.

This service is shared. This method always returns the same instance of the service.

Return value

\Baz A Baz instance.

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php, line 92

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

protected function getBazService() {
  $this->services['baz'] = $instance = new \Baz();
  $instance
    ->setFoo($this
    ->get('foo_with_inline'));
  return $instance;
}