12345678910111213141516171819202122232425262728293031323334353637 |
- <?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\ParameterBag;
- /**
- * This class has been auto-generated
- * by the Symfony Dependency Injection Component.
- */
- class ProjectServiceContainer extends Container
- {
- private $parameters;
- private $targetDirs = array();
- public function __construct()
- {
- parent::__construct();
- $this->methodMap = array(
- 'foo' => 'getFooService',
- );
- }
- /**
- * Gets the public 'foo' shared autowired service.
- *
- * @return \Foo
- */
- protected function getFooService()
- {
- return $this->services['foo'] = new \Foo();
- }
- }
|