class ProjectServiceContainer in Service Container 7.2
Same name in this branch
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services8.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services20.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services12.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services19.php \ProjectServiceContainer
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php \ProjectServiceContainer
Same name and namespace in other branches
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services8.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_compiled.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services20.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services12.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services19.php \ProjectServiceContainer
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php \ProjectServiceContainer
ProjectServiceContainer.
This class has been auto-generated by the Symfony Dependency Injection Component.
Hierarchy
- class \ProjectServiceContainer extends \Symfony\Component\DependencyInjection\Container
Expanded class hierarchy of ProjectServiceContainer
1 string reference to 'ProjectServiceContainer'
- PhpDumper::dump in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Dumper/ PhpDumper.php - Dumps the service container as a PHP class.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Fixtures/ php/ services9.php, line 17
View source
class ProjectServiceContainer extends Container {
private $parameters;
private $targetDirs = array();
/**
* Constructor.
*/
public function __construct() {
parent::__construct(new ParameterBag($this
->getDefaultParameters()));
$this->methodMap = array(
'bar' => 'getBarService',
'baz' => 'getBazService',
'configurator_service' => 'getConfiguratorServiceService',
'configured_service' => 'getConfiguredServiceService',
'decorated' => 'getDecoratedService',
'decorator_service' => 'getDecoratorServiceService',
'decorator_service_with_name' => 'getDecoratorServiceWithNameService',
'factory_service' => 'getFactoryServiceService',
'foo' => 'getFooService',
'foo.baz' => 'getFoo_BazService',
'foo_bar' => 'getFooBarService',
'foo_with_inline' => 'getFooWithInlineService',
'inlined' => 'getInlinedService',
'method_call1' => 'getMethodCall1Service',
'new_factory' => 'getNewFactoryService',
'new_factory_service' => 'getNewFactoryServiceService',
'request' => 'getRequestService',
'service_from_static_method' => 'getServiceFromStaticMethodService',
);
$this->aliases = array(
'alias_for_alias' => 'foo',
'alias_for_foo' => 'foo',
);
}
/**
* Gets the 'bar' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Bar\FooClass A Bar\FooClass instance.
*/
protected function getBarService() {
$a = $this
->get('foo.baz');
$this->services['bar'] = $instance = new \Bar\FooClass('foo', $a, $this
->getParameter('foo_bar'));
$a
->configure($instance);
return $instance;
}
/**
* Gets the 'baz' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Baz A Baz instance.
*/
protected function getBazService() {
$this->services['baz'] = $instance = new \Baz();
$instance
->setFoo($this
->get('foo_with_inline'));
return $instance;
}
/**
* Gets the 'configured_service' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \stdClass A stdClass instance.
*/
protected function getConfiguredServiceService() {
$this->services['configured_service'] = $instance = new \stdClass();
$this
->get('configurator_service')
->configureStdClass($instance);
return $instance;
}
/**
* Gets the 'decorated' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \stdClass A stdClass instance.
*/
protected function getDecoratedService() {
return $this->services['decorated'] = new \stdClass();
}
/**
* Gets the 'decorator_service' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \stdClass A stdClass instance.
*/
protected function getDecoratorServiceService() {
return $this->services['decorator_service'] = new \stdClass();
}
/**
* Gets the 'decorator_service_with_name' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \stdClass A stdClass instance.
*/
protected function getDecoratorServiceWithNameService() {
return $this->services['decorator_service_with_name'] = new \stdClass();
}
/**
* Gets the 'factory_service' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Bar A Bar instance.
*/
protected function getFactoryServiceService() {
return $this->services['factory_service'] = $this
->get('foo.baz')
->getInstance();
}
/**
* Gets the 'foo' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Bar\FooClass A Bar\FooClass instance.
*/
protected function getFooService() {
$a = $this
->get('foo.baz');
$this->services['foo'] = $instance = \Bar\FooClass::getInstance('foo', $a, array(
$this
->getParameter('foo') => 'foo is ' . $this
->getParameter('foo') . '',
'foobar' => $this
->getParameter('foo'),
), true, $this);
$instance
->setBar($this
->get('bar'));
$instance
->initialize();
$instance->foo = 'bar';
$instance->moo = $a;
$instance->qux = array(
$this
->getParameter('foo') => 'foo is ' . $this
->getParameter('foo') . '',
'foobar' => $this
->getParameter('foo'),
);
sc_configure($instance);
return $instance;
}
/**
* Gets the 'foo.baz' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return object A %baz_class% instance.
*/
protected function getFoo_BazService() {
$this->services['foo.baz'] = $instance = call_user_func(array(
$this
->getParameter('baz_class'),
'getInstance',
));
call_user_func(array(
$this
->getParameter('baz_class'),
'configureStatic1',
), $instance);
return $instance;
}
/**
* Gets the 'foo_bar' service.
*
* @return object A %foo_class% instance.
*/
protected function getFooBarService() {
$class = $this
->getParameter('foo_class');
return new $class();
}
/**
* Gets the 'foo_with_inline' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Foo A Foo instance.
*/
protected function getFooWithInlineService() {
$this->services['foo_with_inline'] = $instance = new \Foo();
$instance
->setBar($this
->get('inlined'));
return $instance;
}
/**
* Gets the 'method_call1' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Bar\FooClass A Bar\FooClass instance.
*/
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;
}
/**
* Gets the 'new_factory_service' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \FooBarBaz A FooBarBaz instance.
*/
protected function getNewFactoryServiceService() {
$this->services['new_factory_service'] = $instance = $this
->get('new_factory')
->getInstance();
$instance->foo = 'bar';
return $instance;
}
/**
* Gets the 'request' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @throws RuntimeException always since this service is expected to be injected dynamically
*/
protected function getRequestService() {
throw new RuntimeException('You have requested a synthetic service ("request"). The DIC does not know how to construct this service.');
}
/**
* Gets the 'service_from_static_method' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* @return \Bar\FooClass A Bar\FooClass instance.
*/
protected function getServiceFromStaticMethodService() {
return $this->services['service_from_static_method'] = \Bar\FooClass::getInstance();
}
/**
* Gets the 'configurator_service' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* This service is private.
* If you want to be able to request this service from the container directly,
* make it public, otherwise you might end up with broken code.
*
* @return \ConfClass A ConfClass instance.
*/
protected function getConfiguratorServiceService() {
$this->services['configurator_service'] = $instance = new \ConfClass();
$instance
->setFoo($this
->get('baz'));
return $instance;
}
/**
* Gets the 'inlined' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* This service is private.
* If you want to be able to request this service from the container directly,
* make it public, otherwise you might end up with broken code.
*
* @return \Bar A Bar instance.
*/
protected function getInlinedService() {
$this->services['inlined'] = $instance = new \Bar();
$instance
->setBaz($this
->get('baz'));
$instance->pub = 'pub';
return $instance;
}
/**
* Gets the 'new_factory' service.
*
* This service is shared.
* This method always returns the same instance of the service.
*
* This service is private.
* If you want to be able to request this service from the container directly,
* make it public, otherwise you might end up with broken code.
*
* @return \FactoryClass A FactoryClass instance.
*/
protected function getNewFactoryService() {
$this->services['new_factory'] = $instance = new \FactoryClass();
$instance->foo = 'bar';
return $instance;
}
/**
* Gets the default parameters.
*
* @return array An array of the default parameters
*/
protected function getDefaultParameters() {
return array(
'baz_class' => 'BazClass',
'foo_class' => 'Bar\\FooClass',
'foo' => 'bar',
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ProjectServiceContainer:: |
private | property | ||
ProjectServiceContainer:: |
private | property | ||
ProjectServiceContainer:: |
protected | function | Gets the 'bar' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'baz' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'configurator_service' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'configured_service' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'decorated' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'decorator_service' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'decorator_service_with_name' service. | |
ProjectServiceContainer:: |
protected | function | Gets the default parameters. | |
ProjectServiceContainer:: |
protected | function | Gets the 'factory_service' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'foo_bar' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'foo' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'foo_with_inline' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'foo.baz' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'inlined' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'method_call1' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'new_factory' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'new_factory_service' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'request' service. | |
ProjectServiceContainer:: |
protected | function | Gets the 'service_from_static_method' service. | |
ProjectServiceContainer:: |
public | function | Constructor. |