Browse Source

fixed doc comment

Yoshio HANAWA 14 năm trước cách đây
mục cha
commit
120898f81a

+ 2 - 2
src/Symfony/Component/BrowserKit/Cookie.php

@@ -41,7 +41,7 @@ class Cookie
      * @param  string  $domain   The domain that the cookie is available
      * @param  Boolean $secure   Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client
      * @param  Boolean $httponly The cookie httponly flag
-     * @param  bool    $passedRawValue $value is raw or urldecoded
+     * @param  Boolean $passedRawValue $value is raw or urldecoded
      *
      * @api
      */
@@ -201,7 +201,7 @@ class Cookie
     }
 
     /**
-     * Gets the value of the cookie.
+     * Gets the raw value of the cookie.
      *
      * @return string The cookie value
      *

+ 2 - 2
src/Symfony/Component/BrowserKit/CookieJar.php

@@ -100,8 +100,8 @@ class CookieJar
     /**
      * Returns not yet expired cookie values for the given URI.
      *
-     * @param string $uri A URI
-     * @param bool   $returnsRawValue returnes raw value or urldecoded value
+     * @param string  $uri A URI
+     * @param Boolean $returnsRawValue returnes raw value or urldecoded value
      *
      * @return array An array of cookie values
      */