Browse Source

removed docblock for isNoCache

Brikou CARRE 14 years ago
parent
commit
9908d51da8
1 changed files with 0 additions and 5 deletions
  1. 0 5
      src/Symfony/Component/HttpFoundation/Request.php

+ 0 - 5
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');