container8.php 382 B

12345678910111213
  1. <?php
  2. use Symfony\Component\DependencyInjection\ContainerBuilder;
  3. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
  4. $container = new ContainerBuilder(new ParameterBag(array(
  5. 'FOO' => '%baz%',
  6. 'baz' => 'bar',
  7. 'bar' => 'foo is %%foo bar',
  8. 'values' => array(true, false, null, 0, 1000.3, 'true', 'false', 'null'),
  9. )));
  10. return $container;