variationcache-8.x-1.0/src/Old/Cache/CacheRedirect.php
src/Old/Cache/CacheRedirect.php
<?php
namespace Drupal\variationcache\Old\Cache;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\CacheableDependencyTrait;
/**
* Defines a value object to represent a cache redirect with.
*
* @see \Drupal\variationcache\Cache\VariationCache::get()
* @see \Drupal\variationcache\Cache\VariationCache::set()
*
* @internal
*/
class CacheRedirect implements CacheableDependencyInterface {
use CacheableDependencyTrait;
/**
* Constructs a CacheRedirect object.
*
* @param \Drupal\Core\Cache\CacheableDependencyInterface $cacheability
* The cacheability to redirect to.
*
* @see \Drupal\variationcache\Cache\VariationCache::createRedirectedCacheId()
*/
public function __construct(CacheableDependencyInterface $cacheability) {
// Cache redirects only care about cache contexts.
$this->cacheContexts = $cacheability->getCacheContexts();
}
}
