services8.php 965 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. use Symfony\Components\DependencyInjection\Container;
  3. use Symfony\Components\DependencyInjection\Reference;
  4. use Symfony\Components\DependencyInjection\Parameter;
  5. /**
  6. * ProjectServiceContainer
  7. *
  8. * This class has been auto-generated
  9. * by the Symfony Dependency Injection Component.
  10. */
  11. class ProjectServiceContainer extends Container
  12. {
  13. protected $shared = array();
  14. /**
  15. * Constructor.
  16. */
  17. public function __construct()
  18. {
  19. parent::__construct();
  20. $this->parameters = $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' => 'bar',
  31. 'bar' => 'foo is %foo bar',
  32. 'values' => array(
  33. 0 => true,
  34. 1 => false,
  35. 2 => NULL,
  36. 3 => 0,
  37. 4 => 1000.3,
  38. 5 => 'true',
  39. 6 => 'false',
  40. 7 => 'null',
  41. ),
  42. );
  43. }
  44. }