services28.yml 572 B

12345678910111213141516171819202122232425262728293031323334
  1. services:
  2. _defaults:
  3. public: false
  4. autowire: true
  5. tags:
  6. - name: foo
  7. Acme\Foo: ~
  8. with_defaults:
  9. class: Foo
  10. with_null:
  11. class: Foo
  12. public: true
  13. autowire: ~
  14. no_defaults:
  15. class: Foo
  16. public: true
  17. autowire: false
  18. tags: []
  19. with_defaults_aliased:
  20. alias: with_defaults
  21. with_defaults_aliased_short: '@with_defaults'
  22. Acme\WithShortCutArgs: [foo]
  23. child_def:
  24. parent: with_defaults
  25. public: true
  26. autowire: false