protected function ProjectServiceContainer::getFooWithInlineService

Gets the 'foo_with_inline' service.

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

Return value

Foo A Foo instance.

File

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

Class

ProjectServiceContainer
ProjectServiceContainer

Code

protected function getFooWithInlineService() {
  $this->services['foo_with_inline'] = $instance = new \Foo();
  $instance
    ->setBar($this
    ->get('inlined'));
  return $instance;
}