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