Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Cache / CacheableRedirectResponse.php
1 <?php
2
3 namespace Drupal\Core\Cache;
4
5 use Symfony\Component\HttpFoundation\RedirectResponse;
6
7 /**
8  * A RedirectResponse that contains and can expose cacheability metadata.
9  *
10  * Supports Drupal's caching concepts: cache tags for invalidation and cache
11  * contexts for variations.
12  *
13  * @see \Drupal\Core\Cache\Cache
14  * @see \Drupal\Core\Cache\CacheableMetadata
15  * @see \Drupal\Core\Cache\CacheableResponseTrait
16  */
17 class CacheableRedirectResponse extends RedirectResponse implements CacheableResponseInterface {
18
19   use CacheableResponseTrait;
20
21 }