defaults.expected.yml 803 B

123456789101112131415161718192021222324252627
  1. services:
  2. service_container:
  3. class: Symfony\Component\DependencyInjection\ContainerInterface
  4. public: true
  5. synthetic: true
  6. App\BarService:
  7. class: App\BarService
  8. public: true
  9. arguments: [!service { class: FooClass }]
  10. Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo:
  11. class: Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo
  12. public: true
  13. tags:
  14. - { name: t, a: b }
  15. autowire: true
  16. autoconfigure: true
  17. arguments: ['@bar']
  18. bar:
  19. class: Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\Foo
  20. public: false
  21. tags:
  22. - { name: t, a: b }
  23. autowire: true
  24. calls:
  25. - [setFoo, ['@bar']]