Version 1
[yaffs-website] / web / core / modules / system / tests / modules / early_rendering_controller_test / src / AttachmentsTestDomainObject.php
diff --git a/web/core/modules/system/tests/modules/early_rendering_controller_test/src/AttachmentsTestDomainObject.php b/web/core/modules/system/tests/modules/early_rendering_controller_test/src/AttachmentsTestDomainObject.php
new file mode 100644 (file)
index 0000000..02ecaa7
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+
+namespace Drupal\early_rendering_controller_test;
+
+use Drupal\Core\Render\AttachmentsInterface;
+use Drupal\Core\Render\AttachmentsTrait;
+
+class AttachmentsTestDomainObject extends TestDomainObject implements AttachmentsInterface {
+
+  use AttachmentsTrait;
+
+}