[HttpFoundation] fixed phpdoc

This commit is contained in:
hhamon 2011-02-11 17:57:07 +01:00 committed by Fabien Potencier
parent 5ee8eca0ee
commit c2e4ec44a8
2 changed files with 5 additions and 5 deletions

View File

@ -179,9 +179,6 @@ class HeaderBag
* Sets a cookie.
*
* @param Cookie $cookie
*
* @throws \InvalidArgumentException When the cookie expire parameter is not valid
*
* @return void
*/
public function setCookie(Cookie $cookie)
@ -215,6 +212,9 @@ class HeaderBag
* Returns a cookie
*
* @param string $name
*
* @throws \InvalidArgumentException When the cookie does not exist
*
* @return Cookie
*/
public function getCookie($name)

View File

@ -25,13 +25,13 @@ class ResponseHeaderBag extends HeaderBag
*
* @param array $headers An array of HTTP headers
*/
public function __construct(array $parameters = array())
public function __construct(array $headers = array())
{
// this line is not necessary, but including it avoids any stupid
// errors if we add code to the parent's constructor
parent::__construct();
$this->replace($parameters);
$this->replace($headers);
}
/**