Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Cache / CacheableRedirectResponse.php
diff --git a/web/core/lib/Drupal/Core/Cache/CacheableRedirectResponse.php b/web/core/lib/Drupal/Core/Cache/CacheableRedirectResponse.php
new file mode 100644 (file)
index 0000000..a947559
--- /dev/null
@@ -0,0 +1,21 @@
+<?php
+
+namespace Drupal\Core\Cache;
+
+use Symfony\Component\HttpFoundation\RedirectResponse;
+
+/**
+ * A RedirectResponse that contains and can expose cacheability metadata.
+ *
+ * Supports Drupal's caching concepts: cache tags for invalidation and cache
+ * contexts for variations.
+ *
+ * @see \Drupal\Core\Cache\Cache
+ * @see \Drupal\Core\Cache\CacheableMetadata
+ * @see \Drupal\Core\Cache\CacheableResponseTrait
+ */
+class CacheableRedirectResponse extends RedirectResponse implements CacheableResponseInterface {
+
+  use CacheableResponseTrait;
+
+}