Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / containers / container11.php
1 <?php
2
3 use Symfony\Component\DependencyInjection\ContainerBuilder;
4 use Symfony\Component\DependencyInjection\Definition;
5
6 $container = new ContainerBuilder();
7 $container->
8     register('foo', 'FooClass')->
9     addArgument(new Definition('BarClass', array(new Definition('BazClass'))))
10     ->setPublic(true)
11 ;
12
13 return $container;