You are here

protected function ProjectServiceContainer::getFooWithInlineService 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::getFooWithInlineService()
  2. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getFooWithInlineService()
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::getFooWithInlineService()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/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

\Foo A Foo instance.

File

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

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

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