Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Cache / CacheableResponse.php
1 <?php
2
3 namespace Drupal\Core\Cache;
4
5 use Symfony\Component\HttpFoundation\Response;
6
7 /**
8  * A response 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 CacheableResponse extends Response implements CacheableResponseInterface {
18
19   use CacheableResponseTrait;
20
21 }