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