Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / yaml / services28.yml
1 services:
2     _defaults:
3         public: false
4         autowire: true
5         tags:
6             - name: foo
7
8     Acme\Foo: ~
9
10     with_defaults:
11         class: Foo
12
13     with_null:
14         class: Foo
15         public: true
16         autowire: ~
17
18     no_defaults:
19         class: Foo
20         public: true
21         autowire: false
22         tags: []
23
24     with_defaults_aliased:
25         alias: with_defaults
26
27     with_defaults_aliased_short: '@with_defaults'
28
29     Acme\WithShortCutArgs: [foo]
30
31     child_def:
32         parent: with_defaults
33         public: true
34         autowire: false