Parcourir la source

removed docblock for isNoCache

Brikou CARRE il y a 14 ans
Parent
commit
9908d51da8
1 fichiers modifiés avec 0 ajouts et 5 suppressions
  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');