Skip to content

Commit 674ebb9

Browse files
[DI] minor docblock fixes
1 parent 0b5f6b3 commit 674ebb9

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
@@ -212,8 +212,6 @@ public function getRequest()
212212
/**
213213
* Clicks on a given link.
214214
*
215-
* @param Link $link A Link instance
216-
*
217215
* @return Crawler
218216
*/
219217
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)