Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Cache/CacheableResponse.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line source
<?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; }