This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Components/DependencyInjection/Fixtures/containers/container8.php

14 lines
384 B
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
use Symfony\Components\DependencyInjection\ContainerBuilder;
2010-06-27 17:28:29 +01:00
use Symfony\Components\DependencyInjection\ParameterBag\ParameterBag;
2010-01-04 14:26:20 +00:00
$container = new ContainerBuilder(new ParameterBag(array(
'FOO' => '%baz%',
'baz' => 'bar',
'bar' => 'foo is %%foo bar',
'values' => array(true, false, null, 0, 1000.3, 'true', 'false', 'null'),
2010-06-27 17:28:29 +01:00
)));
2010-01-04 14:26:20 +00:00
return $container;