PHP Classes

File: vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container8.php

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container8.php   Download  
File: vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container8.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 402 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\DependencyInjection\ContainerBuilder;
use
Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;

$container = new ContainerBuilder(new ParameterBag(array(
   
'FOO' => '%baz%',
   
'baz' => 'bar',
   
'bar' => 'foo is %%foo bar',
   
'escape' => '@escapeme',
   
'values' => array(true, false, null, 0, 1000.3, 'true', 'false', 'null'),
)));

return
$container;