X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2Fyaml%2Fservices28.yml;fp=vendor%2Fsymfony%2Fdependency-injection%2FTests%2FFixtures%2Fyaml%2Fservices28.yml;h=fd0ce4cf96d9ad48eecfa92c2ef5175cf0227c17;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services28.yml b/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services28.yml new file mode 100644 index 000000000..fd0ce4cf9 --- /dev/null +++ b/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services28.yml @@ -0,0 +1,34 @@ +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