Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / containers / container15.php
1 <?php
2
3 use Symfony\Component\DependencyInjection\ContainerBuilder;
4
5 $container = new ContainerBuilder();
6 $container
7     ->register('foo', 'FooClass\\Foo')
8     ->setDecoratedService('bar', 'bar.woozy')
9     ->setPublic(true)
10 ;
11
12 return $container;