Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / yaml / services28.yml
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 (file)
index 0000000..fd0ce4c
--- /dev/null
@@ -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