This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services28.yml
2018-11-23 12:29:20 +00:00

34 lines
572 B
YAML

services:
_defaults:
public: false
autowire: true
tags:
- name: foo
Acme\Foo: ~
with_defaults:
class: Foo
with_null:
class: Foo
public: true
autowire: ~
no_defaults:
class: Foo
public: true
autowire: false
tags: []
with_defaults_aliased:
alias: with_defaults
with_defaults_aliased_short: '@with_defaults'
Acme\WithShortCutArgs: [foo]
child_def:
parent: with_defaults
public: true
autowire: false