Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / config / defaults.expected.yml
1
2 services:
3     service_container:
4         class: Symfony\Component\DependencyInjection\ContainerInterface
5         public: true
6         synthetic: true
7     App\BarService:
8         class: App\BarService
9         public: true
10         arguments: [!service { class: FooClass }]
11     Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo:
12         class: Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo
13         public: true
14         tags:
15             - { name: t, a: b }
16         autowire: true
17         autoconfigure: true
18         arguments: ['@bar']
19     bar:
20         class: Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo
21         public: false
22         tags:
23             - { name: t, a: b }
24         autowire: true
25         calls:
26             - [setFoo, ['@bar']]
27