services8.php 1.4 KB

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