You are here

protected function ProjectServiceContainer::getMethodCall1Service in Zircon Profile 8.0

Same name in this branch
  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()
Same name and namespace in other branches
  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()

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_compiled.php, line 241

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(NULL);
  $instance
    ->setBar($this
    ->get("foo")
    ->foo() . ($this
    ->hasparameter("foo") ? $this
    ->getParameter("foo") : "default"));
  return $instance;
}