b5dc66ff0eb04f29b1586c61967586c16f485d2f
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / yaml / integration / defaults_child_tags / main.yml
1 services:
2     _defaults:
3         autoconfigure: true
4         autowire: true
5         tags: [from_defaults]
6
7     parent_service:
8         class: stdClass
9         # will not override child
10         autoconfigure: true
11         # parent definitions are not applied to children
12         tags: [from_parent]
13
14     child_service:
15         parent: parent_service
16         # _defaults is ok because these are explicitly set
17         autoconfigure: false
18         autowire: true