This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/yaml/services28.yml

31 lines
501 B
YAML

services:
_defaults:
public: false
autowire: true
tags:
- name: foo
with_defaults:
class: Foo
with_null:
class: Foo
public: ~
autowire: ~
tags: ~
no_defaults:
class: Foo
public: true
autowire: false
tags: []
no_defaults_child:
parent: no_defaults
autowire: ~
tags:
- name: bar
with_defaults_child:
parent: with_defaults