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