protected function ProjectServiceContainer::getNewFactoryServiceService in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getNewFactoryServiceService()
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getNewFactoryServiceService()
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer::getNewFactoryServiceService()
- 8 vendor/symfony/dependency-injection/Tests/Fixtures/php/services9.php \ProjectServiceContainer::getNewFactoryServiceService()
Gets the 'new_factory_service' service.
This service is shared. This method always returns the same instance of the service.
Return value
\FooBarBaz A FooBarBaz instance.
File
- vendor/
symfony/ dependency-injection/ Tests/ Fixtures/ php/ services9_compiled.php, line 262
Class
- ProjectServiceContainer
- ProjectServiceContainer.
Code
protected function getNewFactoryServiceService() {
$a = new \FactoryClass();
$a->foo = 'bar';
$this->services['new_factory_service'] = $instance = $a
->getInstance();
$instance->foo = 'bar';
return $instance;
}