Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / yaml / integration / child_parent / main.yml
diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/integration/child_parent/main.yml b/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/integration/child_parent/main.yml
new file mode 100644 (file)
index 0000000..edaa3a3
--- /dev/null
@@ -0,0 +1,13 @@
+services:
+    parent_service:
+        abstract: true
+        lazy: true
+        autowire: false
+        public: false
+        tags: [from_parent]
+
+    child_service:
+        class: stdClass
+        parent: parent_service
+        public: true
+        tags: [from_child]