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

Commit

Permalink
Show file tree
Hide file tree
Showing 102 changed files with 0 additions and 259 deletions.
3 changes: 0 additions & 3 deletions src/AbstractMessage.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http;
Expand All @@ -15,8 +14,6 @@
/**
* HTTP standard message (Request/Response)
*
* @category Zend
* @package Zend_Http
* @link http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4
*/
abstract class AbstractMessage extends Message
Expand Down
4 changes: 0 additions & 4 deletions src/Client.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http;
Expand All @@ -19,9 +18,6 @@

/**
* Http client
*
* @category Zend
* @package Zend\Http
*/
class Client implements Stdlib\DispatchableInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/AdapterInterface.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -15,10 +14,6 @@
*
* These classes are used as connectors for Zend_Http_Client, performing the
* tasks of connecting, writing, reading and closing connection to the server.
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
interface AdapterInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/Curl.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -20,10 +19,6 @@
/**
* An adapter class for Zend\Http\Client based on the curl extension.
* Curl requires libcurl. See for full requirements the PHP manual: http://php.net/curl
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
class Curl implements HttpAdapter, StreamInterface
{
Expand Down
6 changes: 0 additions & 6 deletions src/Client/Adapter/Exception/ExceptionInterface.php
Expand Up @@ -5,17 +5,11 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

use Zend\Http\Client\Exception\ExceptionInterface as HttpClientException;

/**
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
interface ExceptionInterface extends HttpClientException
{}
4 changes: 0 additions & 4 deletions src/Client/Adapter/Exception/InitializationException.php
Expand Up @@ -5,15 +5,11 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class InitializationException extends RuntimeException
{}
4 changes: 0 additions & 4 deletions src/Client/Adapter/Exception/InvalidArgumentException.php
Expand Up @@ -5,17 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

use Zend\Http\Client\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Adapter/Exception/OutOfRangeException.php
Expand Up @@ -5,17 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

use Zend\Http\Client\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class OutOfRangeException extends Exception\OutOfRangeException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Adapter/Exception/RuntimeException.php
Expand Up @@ -5,17 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

use Zend\Http\Client\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Adapter/Exception/TimeoutException.php
Expand Up @@ -5,15 +5,11 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class TimeoutException extends RuntimeException implements ExceptionInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/Proxy.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -23,10 +22,6 @@
* fall back to Zend_Http_Client_Adapter_Socket behavior. Just like the
* default Socket adapter, this adapter does not require any special extensions
* installed.
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
class Proxy extends Socket
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/Socket.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -20,10 +19,6 @@
/**
* A sockets based (stream\socket\client) adapter class for Zend\Http\Client. Can be used
* on almost every PHP environment, and does not require any special extensions.
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
class Socket implements HttpAdapter, StreamInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/StreamInterface.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -14,10 +13,6 @@
* An interface description for Zend_Http_Client_Adapter_Stream classes.
*
* This interface describes Zend_Http_Client_Adapter which supports streaming.
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
interface StreamInterface
{
Expand Down
5 changes: 0 additions & 5 deletions src/Client/Adapter/Test.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Adapter;
Expand All @@ -21,10 +20,6 @@
* without actually performing an HTTP request. You should instantiate this
* object manually, and then set it as the client's adapter. Then, you can
* set the expected response using the setResponse() method.
*
* @category Zend
* @package Zend_Http
* @subpackage Client_Adapter
*/
class Test implements AdapterInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Cookies.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client;
Expand Down Expand Up @@ -34,9 +33,6 @@
* (by passing Zend\Http\Client\Cookies::COOKIE_STRING_CONCAT).
*
* @link http://wp.netscape.com/newsref/std/cookie_spec.html for some specs.
*
* @category Zend
* @package Zend\Http\Client
*/
class Cookies
{
Expand Down
6 changes: 0 additions & 6 deletions src/Client/Exception/ExceptionInterface.php
Expand Up @@ -5,17 +5,11 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Exception;

use Zend\Http\Exception\ExceptionInterface as HttpException;

/**
* @category Zend
* @package Zend_Http
* @subpackage Client
*/
interface ExceptionInterface extends HttpException
{}
4 changes: 0 additions & 4 deletions src/Client/Exception/InvalidArgumentException.php
Expand Up @@ -5,17 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Exception;

use Zend\Http\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class InvalidArgumentException extends Exception\InvalidArgumentException implements
ExceptionInterface
Expand Down
1 change: 0 additions & 1 deletion src/Client/Exception/OutOfRangeException.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Exception;
Expand Down
4 changes: 0 additions & 4 deletions src/Client/Exception/RuntimeException.php
Expand Up @@ -5,17 +5,13 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Client\Exception;

use Zend\Http\Exception;

/**
*
* @category Zend
* @package Zend_Application
*/
class RuntimeException extends Exception\RuntimeException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/ClientStatic.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http;
Expand All @@ -14,9 +13,6 @@

/**
* Http static client
*
* @category Zend
* @package Zend\Http
*/
class ClientStatic
{
Expand Down
4 changes: 0 additions & 4 deletions src/Cookies.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http;
Expand Down Expand Up @@ -33,9 +32,6 @@
* (by passing Zend\Http\Client\Cookies::COOKIE_STRING_CONCAT).
*
* @link http://wp.netscape.com/newsref/std/cookie_spec.html for some specs.
*
* @category Zend
* @package Zend\Http\Client
*/
class Cookies extends Headers
{
Expand Down
1 change: 0 additions & 1 deletion src/Exception/ExceptionInterface.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/InvalidArgumentException.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/OutOfRangeException.php
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Http
*/

namespace Zend\Http\Exception;
Expand Down

0 comments on commit a6f8add

Please sign in to comment.