protected function ProjectServiceContainer::getInlinedService

Gets the 'inlined' service.

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

This service is private. If you want to be able to request this service from the container directly, make it public, otherwise you might end up with broken code.

Return value

Bar A Bar instance.

File

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

Class

ProjectServiceContainer
ProjectServiceContainer

Code

protected function getInlinedService() {
  $this->services['inlined'] = $instance = new \Bar();
  $instance
    ->setBaz($this
    ->get('baz'));
  $instance->pub = 'pub';
  return $instance;
}