b12a304221dd8e5dfa68c06f2a4eeb495cadfeb9
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / config / instanceof.expected.yml
1
2 services:
3     service_container:
4         class: Symfony\Component\DependencyInjection\ContainerInterface
5         public: true
6         synthetic: true
7     Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo:
8         class: Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo
9         public: true
10         tags:
11             - { name: tag, k: v }
12         lazy: true
13         properties: { p: 1 }
14         calls:
15             - [setFoo, ['@foo']]
16
17         shared: false
18         configurator: c
19     foo:
20         class: App\FooService
21         public: true