You are here

protected function ProjectServiceContainer::getMethodCall1Service in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getMethodCall1Service()
  2. 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getMethodCall1Service()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getMethodCall1Service()
  2. 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getMethodCall1Service()

Gets the 'method_call1' service.

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

Return value

\Bar\FooClass A Bar\FooClass instance.

File

vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php, line 237

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

protected function getMethodCall1Service() {
  require_once '%path%foo.php';
  $this->services['method_call1'] = $instance = new \Bar\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));
  }
  $instance
    ->setBar($this
    ->get("foo")
    ->foo() . ($this
    ->hasparameter("foo") ? $this
    ->getParameter("foo") : "default"));
  return $instance;
}