12345678910111213141516171819202122232425 |
- <?php
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\Container;
- use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\DependencyInjection\Parameter;
- use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
- /**
- * ProjectServiceContainer
- *
- * This class has been auto-generated
- * by the Symfony Dependency Injection Component.
- */
- class ProjectServiceContainer extends Container
- {
- /**
- * Constructor.
- */
- public function __construct()
- {
- parent::__construct(new ParameterBag($this->getDefaultParameters()));
- }
- }
|