Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / config / php7.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Loader\Configurator;
4
5 use Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo;
6
7 return function (ContainerConfigurator $c) {
8     $c->parameters()
9         ('foo', 'Foo')
10         ('bar', 'Bar')
11     ;
12     $c->services()
13         (Foo::class)
14             ->arg('$bar', ref('bar'))
15             ->public()
16         ('bar', Foo::class)
17             ->call('setFoo')
18     ;
19 };