services8.php 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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($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' => 'bar',
  30. 'bar' => 'foo is %foo bar',
  31. 'values' => array(
  32. 0 => true,
  33. 1 => false,
  34. 2 => NULL,
  35. 3 => 0,
  36. 4 => 1000.3,
  37. 5 => 'true',
  38. 6 => 'false',
  39. 7 => 'null',
  40. ),
  41. );
  42. }
  43. }