Skip to content

Commit db0f4ae

Browse files
Merge branch '2.8' into 3.3
* 2.8: [DI] minor docblock fixes
2 parents 0b0b84b + 051f516 commit db0f4ae

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
@@ -232,8 +232,6 @@ public function getRequest()
232232
/**
233233
* Clicks on a given link.
234234
*
235-
* @param Link $link A Link instance
236-
*
237235
* @return Crawler
238236
*/
239237
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)