services8.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. use Symfony\Component\DependencyInjection\ContainerInterface;
  3. use Symfony\Component\DependencyInjection\Container;
  4. use Symfony\Component\DependencyInjection\Reference;
  5. use Symfony\Component\DependencyInjection\Parameter;
  6. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
  7. /**
  8. * ProjectServiceContainer
  9. *
  10. * This class has been auto-generated
  11. * by the Symfony Dependency Injection Component.
  12. */
  13. class ProjectServiceContainer extends Container
  14. {
  15. /**
  16. * Constructor.
  17. */
  18. public function __construct()
  19. {
  20. parent::__construct(new ParameterBag($this->getDefaultParameters()));
  21. }
  22. /**
  23. * Gets the default parameters.
  24. *
  25. * @return array An array of the default parameters
  26. */
  27. protected function getDefaultParameters()
  28. {
  29. return array(
  30. 'foo' => '%baz%',
  31. 'baz' => 'bar',
  32. 'bar' => 'foo is %%foo bar',
  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. }