Skip to content

Commit 01a9ebd

Browse files
Merge branch '3.3' into 3.4
* 3.3: [DI] minor docblock fixes
2 parents f8d7bce + db0f4ae commit 01a9ebd

File tree

4 files changed

+0
-11
lines changed

4 files changed

+0
-11
lines changed

Client.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,6 @@ public function getRequest()
233233
/**
234234
* Clicks on a given link.
235235
*
236-
* @param Link $link A Link instance
237-
*
238236
* @return Crawler
239237
*/
240238
public function click(Link $link)

Cookie.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ class Cookie
2121
/**
2222
* Handles dates as defined by RFC 2616 section 3.3.1, and also some other
2323
* non-standard, but common formats.
24-
*
25-
* @var array
2624
*/
2725
private static $dateFormats = array(
2826
'D, d M Y H:i:s T',

CookieJar.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ class CookieJar
2020
{
2121
protected $cookieJar = array();
2222

23-
/**
24-
* Sets a cookie.
25-
*
26-
* @param Cookie $cookie A Cookie instance
27-
*/
2823
public function set(Cookie $cookie)
2924
{
3025
$this->cookieJar[$cookie->getDomain()][$cookie->getPath()][$cookie->getName()] = $cookie;

History.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ public function clear()
3232

3333
/**
3434
* Adds a Request to the history.
35-
*
36-
* @param Request $request A Request instance
3735
*/
3836
public function add(Request $request)
3937
{

0 commit comments

Comments
 (0)