1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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->services =
- $this->scopedServices =
- $this->scopeStacks = array();
- $this->scopes = array();
- $this->scopeChildren = array();
- $this->methodMap = array(
- 'bar' => 'getBarService',
- );
- $this->aliases = array();
- }
- /**
- * {@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 \stdClass
- */
- protected function getBarService()
- {
- $a = new \stdClass();
- $a->add($this);
- return $this->services['bar'] = new \stdClass($a);
- }
- }
|