/**
  * {@inheritdoc}
  */
 protected function fromResponse(RedirectResponse $response)
 {
     parent::fromResponse($response);
     $metadata = $this->getCacheableMetadata();
     if ($response instanceof CacheableResponseInterface) {
         $metadata->addCacheableDependency($response->getCacheableMetadata());
     } else {
         $metadata->setCacheMaxAge(0);
     }
 }