42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
use Symfony\Component\DependencyInjection\Container;
|
|
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
|
|
use Symfony\Component\DependencyInjection\Exception\LogicException;
|
|
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
|
|
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
|
|
|
|
/**
|
|
* ProjectServiceContainer.
|
|
*
|
|
* This class has been auto-generated
|
|
* by the Symfony Dependency Injection Component.
|
|
*/
|
|
class ProjectServiceContainer extends Container
|
|
{
|
|
private $parameters;
|
|
private $targetDirs = array();
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
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();
|
|
}
|
|
}
|