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