protected function ProjectServiceContainer::getFoo_BazService

Gets the 'foo.baz' service.

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

Return value

BazClass A BazClass instance.

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php, line 149

Class

ProjectServiceContainer
ProjectServiceContainer

Code

protected function getFoo_BazService() {
  $this->services['foo.baz'] = $instance = call_user_func(array(
    'BazClass',
    'getInstance',
  ));
  call_user_func(array(
    'BazClass',
    'configureStatic1',
  ), $instance);
  return $instance;
}