/**
  * Store tags and associate them with the response.
  *
  * @param Response $response
  */
 private function storeTagsFromResponse(Response $response)
 {
     $contentDigest = $this->getContentDigestFromHeaders($response->headers);
     $tags = $this->getTagsFromHeaders($response->headers);
     $this->manager->tagContentDigest($tags, $contentDigest);
 }