diff --git a/src/Client/Adapter/Test.php b/src/Client/Adapter/Test.php index cde513731d..7e3d407de1 100644 --- a/src/Client/Adapter/Test.php +++ b/src/Client/Adapter/Test.php @@ -98,10 +98,9 @@ public function setOptions($options = array()) /** * Connect to the remote server * - * @param string $host - * @param int $port - * @param bool $secure - * @param int $timeout + * @param string $host + * @param int $port + * @param bool $secure * @throws Exception\RuntimeException */ public function connect($host, $port = 80, $secure = false) diff --git a/src/Client/Cookies.php b/src/Client/Cookies.php index c2b4ecb84e..1624e81794 100644 --- a/src/Client/Cookies.php +++ b/src/Client/Cookies.php @@ -328,7 +328,7 @@ protected function _matchPath($domains, $path) * of the cookie. * * @param Response $response HTTP Response object - * @param Uri\Uri|string $uri The requested URI + * @param Uri\Uri|string $refUri The requested URI * @return Cookies * @todo Add the $uri functionality. */ diff --git a/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php b/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php index cb62796d9c..7337273095 100644 --- a/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php +++ b/src/Header/Accept/FieldValuePart/AbstractFieldValuePart.php @@ -42,7 +42,7 @@ public function __construct($internalValues) /** * Set a Field Value Part this Field Value Part matched against. * - * @param AbstractFieldValuePart $matchedPart + * @param AbstractFieldValuePart $matchedAgainst * @return AbstractFieldValuePart provides fluent interface */ public function setMatchedAgainst(AbstractFieldValuePart $matchedAgainst) diff --git a/src/Headers.php b/src/Headers.php index de3790492d..38e543aba0 100644 --- a/src/Headers.php +++ b/src/Headers.php @@ -25,7 +25,7 @@ class Headers implements Countable, Iterator { /** - * @var \Zend\Loader\PluginClassLoader + * @var PluginClassLoader */ protected $pluginClassLoader = null; diff --git a/src/Response.php b/src/Response.php index 59716b435e..8293042d7c 100644 --- a/src/Response.php +++ b/src/Response.php @@ -508,7 +508,7 @@ protected function decodeDeflate($body) * Some servers (IIS ?) send a broken deflate response, without the * RFC-required zlib header. * - * We try to detect the zlib header, and if it does not exsit we + * We try to detect the zlib header, and if it does not exist we * teat the body is plain DEFLATE content. * * This method was adapted from PEAR HTTP_Request2 by (c) Alexey Borzov