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

object A %baz_class% instance.

File

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

Class

ProjectServiceContainer
ProjectServiceContainer

Code

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