e9161dccfc079e1a830b920187394dd5d1b0995e
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / yaml / integration / defaults_instanceof_importance / expected.yml
1 services:
2     # main_service should look like this in the end
3     main_service_expected:
4         class: Symfony\Component\DependencyInjection\Tests\Compiler\IntegrationTestStub
5         # _instanceof overrides _defaults
6         autowire: false
7         # inherited from _defaults
8         autoconfigure: true
9         # from _instanceof
10         shared: false
11         # service definition overrides _instanceof
12         public: true
13
14         tags:
15             - { name: foo_tag, tag_option: from_service }
16             # these 2 are from instanceof
17             - { name: foo_tag, tag_option: from_instanceof }
18             - { name: bar_tag }
19             - { name: from_defaults }
20         # calls from instanceof are kept, but this comes later
21         calls:
22             # first call is from instanceof
23             - [setSunshine, [bright]]
24             #
25             - [enableSummer, [true]]
26             - [setSunshine, [warm]]