Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

src/Client/Adapter/Test.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,9 @@ public function setOptions($options = array())
9898
/**
9999
* Connect to the remote server
100100
*
101-
* @param string $host
102-
* @param int $port
103-
* @param bool $secure
104-
* @param int $timeout
101+
* @param string $host
102+
* @param int $port
103+
* @param bool $secure
105104
* @throws Exception\RuntimeException
106105
*/
107106
public function connect($host, $port = 80, $secure = false)

src/Client/Cookies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ protected function _matchPath($domains, $path)
328328
* of the cookie.
329329
*
330330
* @param Response $response HTTP Response object
331-
* @param Uri\Uri|string $uri The requested URI
331+
* @param Uri\Uri|string $refUri The requested URI
332332
* @return Cookies
333333
* @todo Add the $uri functionality.
334334
*/

src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct($internalValues)
4242
/**
4343
* Set a Field Value Part this Field Value Part matched against.
4444
*
45-
* @param AbstractFieldValuePart $matchedPart
45+
* @param AbstractFieldValuePart $matchedAgainst
4646
* @return AbstractFieldValuePart provides fluent interface
4747
*/
4848
public function setMatchedAgainst(AbstractFieldValuePart $matchedAgainst)

src/Headers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
class Headers implements Countable, Iterator
2626
{
2727
/**
28-
* @var \Zend\Loader\PluginClassLoader
28+
* @var PluginClassLoader
2929
*/
3030
protected $pluginClassLoader = null;
3131

src/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ protected function decodeDeflate($body)
508508
* Some servers (IIS ?) send a broken deflate response, without the
509509
* RFC-required zlib header.
510510
*
511-
* We try to detect the zlib header, and if it does not exsit we
511+
* We try to detect the zlib header, and if it does not exist we
512512
* teat the body is plain DEFLATE content.
513513
*
514514
* This method was adapted from PEAR HTTP_Request2 by (c) Alexey Borzov

0 commit comments

Comments
 (0)