protected function ProjectServiceContainer::getMethodCall1Service

Gets the 'method_call1' service.

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

Return value

FooClass A FooClass instance.

File

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

Class

ProjectServiceContainer
ProjectServiceContainer

Code

protected function getMethodCall1Service() {
  require_once '%path%foo.php';
  $this->services['method_call1'] = $instance = new \FooClass();
  $instance
    ->setBar($this
    ->get('foo'));
  $instance
    ->setBar($this
    ->get('foo2', ContainerInterface::NULL_ON_INVALID_REFERENCE));
  if ($this
    ->has('foo3')) {
    $instance
      ->setBar($this
      ->get('foo3', ContainerInterface::NULL_ON_INVALID_REFERENCE));
  }
  if ($this
    ->has('foobaz')) {
    $instance
      ->setBar($this
      ->get('foobaz', ContainerInterface::NULL_ON_INVALID_REFERENCE));
  }
  return $instance;
}