c2c52fe3351c79db40b5af046f24d658451b7d78
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / php / services8.php
1 <?php
2
3 use Symfony\Component\DependencyInjection\ContainerInterface;
4 use Symfony\Component\DependencyInjection\Container;
5 use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
6 use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
7 use Symfony\Component\DependencyInjection\Exception\LogicException;
8 use Symfony\Component\DependencyInjection\Exception\RuntimeException;
9 use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
10
11 /**
12  * ProjectServiceContainer.
13  *
14  * This class has been auto-generated
15  * by the Symfony Dependency Injection Component.
16  */
17 class ProjectServiceContainer extends Container
18 {
19     private $parameters;
20     private $targetDirs = array();
21
22     /**
23      * Constructor.
24      */
25     public function __construct()
26     {
27         parent::__construct(new ParameterBag($this->getDefaultParameters()));
28     }
29
30     /**
31      * Gets the default parameters.
32      *
33      * @return array An array of the default parameters
34      */
35     protected function getDefaultParameters()
36     {
37         return array(
38             'foo' => '%baz%',
39             'baz' => 'bar',
40             'bar' => 'foo is %%foo bar',
41             'escape' => '@escapeme',
42             'values' => array(
43                 0 => true,
44                 1 => false,
45                 2 => NULL,
46                 3 => 0,
47                 4 => 1000.3,
48                 5 => 'true',
49                 6 => 'false',
50                 7 => 'null',
51             ),
52         );
53     }
54 }