private function sendNotModified(Response $response)
 {
     $this->headers->setStatus(304, 'Not Modified');
     $this->headers->setCacheHeaders($response->getLastModified(), $response->getETag(), $response->getMaxAge());
     return true;
 }