Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $response = new Response();
- $response->setPublic();
- $response->setETag(md5($data->getId()));
- if ($response->isNotModified($this->get('request'))) {
- return $response;
- }
- return $this->render('MyBundle:MyController:action.html.twig',
- array('data' => $data), $response);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement