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

Commit db7d808

Browse files

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

src/Client/Adapter/AdapterInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
namespace Zend\Http\Client\Adapter;
1111

1212
/**
13-
* An interface description for Zend_Http_Client_Adapter classes.
13+
* An interface description for Zend\Http\Client\Adapter classes.
1414
*
15-
* These classes are used as connectors for Zend_Http_Client, performing the
15+
* These classes are used as connectors for Zend\Http\Client, performing the
1616
* tasks of connecting, writing, reading and closing connection to the server.
1717
*/
1818
interface AdapterInterface

src/Client/Adapter/Proxy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
use Zend\Stdlib\ErrorHandler;
1616

1717
/**
18-
* HTTP Proxy-supporting Zend_Http_Client adapter class, based on the default
18+
* HTTP Proxy-supporting Zend\Http\Client adapter class, based on the default
1919
* socket based adapter.
2020
*
2121
* Should be used if proxy HTTP access is required. If no proxy is set, will
22-
* fall back to Zend_Http_Client_Adapter_Socket behavior. Just like the
22+
* fall back to Zend\Http\Client\Adapter\Socket behavior. Just like the
2323
* default Socket adapter, this adapter does not require any special extensions
2424
* installed.
2525
*/

src/Client/Adapter/Socket.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function setOptions($options = array())
106106
}
107107
if (!is_array($options)) {
108108
throw new AdapterException\InvalidArgumentException(
109-
'Array or Zend_Config object expected, got ' . gettype($options)
109+
'Array or Zend\Config object expected, got ' . gettype($options)
110110
);
111111
}
112112

@@ -483,7 +483,7 @@ public function read()
483483
}
484484

485485
// We automatically decode chunked-messages when writing to a stream
486-
// this means we have to disallow the Zend_Http_Response to do it again
486+
// this means we have to disallow the Zend\Http\Response to do it again
487487
if ($this->outStream) {
488488
$response = str_ireplace("Transfer-Encoding: chunked\r\n", '', $response);
489489
}

src/Client/Adapter/StreamInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
namespace Zend\Http\Client\Adapter;
1111

1212
/**
13-
* An interface description for Zend_Http_Client_Adapter_Stream classes.
13+
* An interface description for Zend\Http\Client\Adapter\Stream classes.
1414
*
15-
* This interface describes Zend_Http_Client_Adapter which supports streaming.
15+
* This interface describes Zend\Http\Client\Adapter which supports streaming.
1616
*/
1717
interface StreamInterface
1818
{

src/Client/Adapter/Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* A testing-purposes adapter.
1818
*
19-
* Should be used to test all components that rely on Zend_Http_Client,
19+
* Should be used to test all components that rely on Zend\Http\Client,
2020
* without actually performing an HTTP request. You should instantiate this
2121
* object manually, and then set it as the client's adapter. Then, you can
2222
* set the expected response using the setResponse() method.

src/Client/Cookies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* A Cookies object is designed to contain and maintain HTTP cookies, and should
21-
* be used along with Zend_Http_Client in order to manage cookies across HTTP requests and
21+
* be used along with Zend\Http\Client in order to manage cookies across HTTP requests and
2222
* responses.
2323
*
2424
* The class contains an array of Zend\Http\Header\Cookie objects. Cookies can be added

src/Cookies.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717

1818
/**
19-
* A Zend_Http_CookieJar object is designed to contain and maintain HTTP cookies, and should
20-
* be used along with Zend_Http_Client in order to manage cookies across HTTP requests and
19+
* A Zend\Http\Cookies object is designed to contain and maintain HTTP cookies, and should
20+
* be used along with Zend\Http\Client in order to manage cookies across HTTP requests and
2121
* responses.
2222
*
2323
* The class contains an array of Zend\Http\Header\Cookie objects. Cookies can be added
@@ -36,7 +36,7 @@
3636
class Cookies extends Headers
3737
{
3838
/**
39-
* Return cookie(s) as a Zend_Http_Cookie object
39+
* Return cookie(s) as a Zend\Http\Cookie object
4040
*
4141
*/
4242
const COOKIE_OBJECT = 0;

0 commit comments

Comments
 (0)