Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / config / basic.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Loader\Configurator;
4
5 use App\BarService;
6
7 return function (ContainerConfigurator $c) {
8     $s = $c->services();
9     $s->set(BarService::class)
10         ->args(array(inline('FooClass')));
11 };