Version 1
[yaffs-website] / web / core / modules / system / tests / modules / early_rendering_controller_test / src / AttachmentsTestResponse.php
diff --git a/web/core/modules/system/tests/modules/early_rendering_controller_test/src/AttachmentsTestResponse.php b/web/core/modules/system/tests/modules/early_rendering_controller_test/src/AttachmentsTestResponse.php
new file mode 100644 (file)
index 0000000..4a471e7
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+namespace Drupal\early_rendering_controller_test;
+
+use Drupal\Core\Render\AttachmentsInterface;
+use Drupal\Core\Render\AttachmentsTrait;
+use Symfony\Component\HttpFoundation\Response;
+
+class AttachmentsTestResponse extends Response implements AttachmentsInterface {
+
+  use AttachmentsTrait;
+
+}