db backup prior to drupal security update
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / containers / container8.php
1 <?php
2
3 use Symfony\Component\DependencyInjection\ContainerBuilder;
4 use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
5
6 $container = new ContainerBuilder(new ParameterBag(array(
7     'FOO' => '%baz%',
8     'baz' => 'bar',
9     'bar' => 'foo is %%foo bar',
10     'escape' => '@escapeme',
11     'values' => array(true, false, null, 0, 1000.3, 'true', 'false', 'null'),
12 )));
13
14 return $container;