You are here

protected function ProjectServiceContainer::getServiceFromStaticMethodService in Service Container 7

Same name in this branch
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getServiceFromStaticMethodService()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getServiceFromStaticMethodService()
Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getServiceFromStaticMethodService()
  2. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getServiceFromStaticMethodService()

Gets the 'service_from_static_method' service.

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

Return value

\Bar\FooClass A Bar\FooClass instance.

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php, line 295

Class

ProjectServiceContainer
ProjectServiceContainer.

Code

protected function getServiceFromStaticMethodService() {
  return $this->services['service_from_static_method'] = \Bar\FooClass::getInstance();
}