Selaa lähdekoodia

[HttpFoundation] fixed phpdoc

hhamon 14 vuotta sitten
vanhempi
commit
c2e4ec44a8

+ 3 - 3
src/Symfony/Component/HttpFoundation/HeaderBag.php

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

+ 2 - 2
src/Symfony/Component/HttpFoundation/ResponseHeaderBag.php

@@ -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);
     }
 
     /**