fixed doc comment

This commit is contained in:
Yoshio HANAWA 2011-05-23 05:43:45 +09:00
parent 2cecc95d9e
commit 120898f81a
2 changed files with 4 additions and 4 deletions

View File

@ -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
*

View File

@ -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
*/