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

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(NULL);
  return $instance;
}