blob: efd839b9d2a348d2aafaeadf7cd9d5f5d5358ac0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace Drupal\Core\Cache;
use Symfony\Component\HttpFoundation\Response;
/**
* A response 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 CacheableResponse extends Response implements CacheableResponseInterface {
use CacheableResponseTrait;
}
|