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/fixtures/Symfony/Components/DependencyInjection/containers/container8.php
2010-05-06 13:25:53 +02:00

13 lines
281 B
PHP

<?php
use Symfony\Components\DependencyInjection\Builder;
$container = new Builder();
$container->setParameters(array(
'FOO' => 'bar',
'bar' => 'foo is %foo bar',
'values' => array(true, false, null, 0, 1000.3, 'true', 'false', 'null'),
));
return $container;