From 9908d51da804e22b708ebcc2494a7237ea55ada0 Mon Sep 17 00:00:00 2001 From: Brikou CARRE Date: Mon, 23 May 2011 01:37:10 -0700 Subject: [PATCH] removed docblock for isNoCache --- src/Symfony/Component/HttpFoundation/Request.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index e796fa0613..9068f56b34 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -770,11 +770,6 @@ class Request return preg_split('/\s*,\s*/', $this->headers->get('if_none_match'), null, PREG_SPLIT_NO_EMPTY); } - /** - * Checks whether cached response must be successfully revalidated by the origin server. - * - * @return Boolean - */ public function isNoCache() { return $this->headers->hasCacheControlDirective('no-cache') || 'no-cache' == $this->headers->get('Pragma');