123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <?php
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\Container;
- use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
- use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
- use Symfony\Component\DependencyInjection\Exception\LogicException;
- use Symfony\Component\DependencyInjection\Exception\RuntimeException;
- use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
- /**
- * This class has been auto-generated
- * by the Symfony Dependency Injection Component.
- */
- class ProjectServiceContainer extends Container
- {
- private $parameters;
- private $targetDirs = array();
- public function __construct()
- {
- $this->parameters = $this->getDefaultParameters();
- $this->services =
- $this->scopedServices =
- $this->scopeStacks = array();
- $this->scopes = array();
- $this->scopeChildren = array();
- $this->methodMap = array(
- 'bar' => 'getBarService',
- 'baz' => 'getBazService',
- 'configured_service' => 'getConfiguredServiceService',
- 'decorator_service' => 'getDecoratorServiceService',
- 'decorator_service_with_name' => 'getDecoratorServiceWithNameService',
- 'deprecated_service' => 'getDeprecatedServiceService',
- 'factory_service' => 'getFactoryServiceService',
- 'foo' => 'getFooService',
- 'foo.baz' => 'getFoo_BazService',
- 'foo_bar' => 'getFooBarService',
- 'foo_with_inline' => 'getFooWithInlineService',
- 'method_call1' => 'getMethodCall1Service',
- 'new_factory_service' => 'getNewFactoryServiceService',
- 'request' => 'getRequestService',
- 'service_from_static_method' => 'getServiceFromStaticMethodService',
- );
- $this->aliases = array(
- 'alias_for_alias' => 'foo',
- 'alias_for_foo' => 'foo',
- 'decorated' => 'decorator_service_with_name',
- );
- }
- /**
- * {@inheritdoc}
- */
- public function compile()
- {
- throw new LogicException('You cannot compile a dumped frozen container.');
- }
- /**
- * {@inheritdoc}
- */
- public function isFrozen()
- {
- return true;
- }
- /**
- * Gets the public 'bar' shared service.
- *
- * @return \Bar\FooClass
- */
- 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 public 'baz' shared service.
- *
- * @return \Baz
- */
- protected function getBazService()
- {
- $this->services['baz'] = $instance = new \Baz();
- $instance->setFoo($this->get('foo_with_inline'));
- return $instance;
- }
- /**
- * Gets the public 'configured_service' shared service.
- *
- * @return \stdClass
- */
- protected function getConfiguredServiceService()
- {
- $a = new \ConfClass();
- $a->setFoo($this->get('baz'));
- $this->services['configured_service'] = $instance = new \stdClass();
- $a->configureStdClass($instance);
- return $instance;
- }
- /**
- * Gets the public 'decorator_service' shared service.
- *
- * @return \stdClass
- */
- protected function getDecoratorServiceService()
- {
- return $this->services['decorator_service'] = new \stdClass();
- }
- /**
- * Gets the public 'decorator_service_with_name' shared service.
- *
- * @return \stdClass
- */
- protected function getDecoratorServiceWithNameService()
- {
- return $this->services['decorator_service_with_name'] = new \stdClass();
- }
- /**
- * Gets the public 'deprecated_service' shared service.
- *
- * @return \stdClass
- *
- * @deprecated The "deprecated_service" service is deprecated. You should stop using it, as it will soon be removed.
- */
- protected function getDeprecatedServiceService()
- {
- @trigger_error('The "deprecated_service" service is deprecated. You should stop using it, as it will soon be removed.', E_USER_DEPRECATED);
- return $this->services['deprecated_service'] = new \stdClass();
- }
- /**
- * Gets the public 'factory_service' shared service.
- *
- * @return \Bar
- */
- protected function getFactoryServiceService()
- {
- return $this->services['factory_service'] = $this->get('foo.baz')->getInstance();
- }
- /**
- * Gets the public 'foo' shared service.
- *
- * @return \Bar\FooClass
- */
- protected function getFooService()
- {
- $a = $this->get('foo.baz');
- $this->services['foo'] = $instance = \Bar\FooClass::getInstance('foo', $a, array('bar' => 'foo is bar', 'foobar' => 'bar'), true, $this);
- $instance->foo = 'bar';
- $instance->moo = $a;
- $instance->qux = array('bar' => 'foo is bar', 'foobar' => 'bar');
- $instance->setBar($this->get('bar'));
- $instance->initialize();
- sc_configure($instance);
- return $instance;
- }
- /**
- * Gets the public 'foo.baz' shared service.
- *
- * @return \BazClass
- */
- protected function getFoo_BazService()
- {
- $this->services['foo.baz'] = $instance = \BazClass::getInstance();
- \BazClass::configureStatic1($instance);
- return $instance;
- }
- /**
- * Gets the public 'foo_bar' service.
- *
- * @return \Bar\FooClass
- */
- protected function getFooBarService()
- {
- return new \Bar\FooClass();
- }
- /**
- * Gets the public 'foo_with_inline' shared service.
- *
- * @return \Foo
- */
- protected function getFooWithInlineService()
- {
- $a = new \Bar();
- $this->services['foo_with_inline'] = $instance = new \Foo();
- $a->pub = 'pub';
- $a->setBaz($this->get('baz'));
- $instance->setBar($a);
- return $instance;
- }
- /**
- * Gets the public 'method_call1' shared service.
- *
- * @return \Bar\FooClass
- */
- 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;
- }
- /**
- * Gets the public 'new_factory_service' shared service.
- *
- * @return \FooBarBaz
- */
- protected function getNewFactoryServiceService()
- {
- $a = new \FactoryClass();
- $a->foo = 'bar';
- $this->services['new_factory_service'] = $instance = $a->getInstance();
- $instance->foo = 'bar';
- return $instance;
- }
- /**
- * Gets the public 'request' shared 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 public 'service_from_static_method' shared service.
- *
- * @return \Bar\FooClass
- */
- protected function getServiceFromStaticMethodService()
- {
- return $this->services['service_from_static_method'] = \Bar\FooClass::getInstance();
- }
- /**
- * {@inheritdoc}
- */
- public function getParameter($name)
- {
- $name = strtolower($name);
- if (!(isset($this->parameters[$name]) || array_key_exists($name, $this->parameters))) {
- throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name));
- }
- return $this->parameters[$name];
- }
- /**
- * {@inheritdoc}
- */
- public function hasParameter($name)
- {
- $name = strtolower($name);
- return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters);
- }
- /**
- * {@inheritdoc}
- */
- public function setParameter($name, $value)
- {
- throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
- }
- /**
- * {@inheritdoc}
- */
- public function getParameterBag()
- {
- if (null === $this->parameterBag) {
- $this->parameterBag = new FrozenParameterBag($this->parameters);
- }
- return $this->parameterBag;
- }
- /**
- * 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',
- );
- }
- }
|