Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php')
-rw-r--r--vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php60
1 files changed, 0 insertions, 60 deletions
diff --git a/vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php b/vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
deleted file mode 100644
index f6fe0cf..0000000
--- a/vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Http\Client\Adapter;
-
-/**
- * An interface description for Zend\Http\Client\Adapter classes.
- *
- * These classes are used as connectors for Zend\Http\Client, performing the
- * tasks of connecting, writing, reading and closing connection to the server.
- */
-interface AdapterInterface
-{
- /**
- * Set the configuration array for the adapter
- *
- * @param array $options
- */
- public function setOptions($options = array());
-
- /**
- * Connect to the remote server
- *
- * @param string $host
- * @param int $port
- * @param bool $secure
- */
- public function connect($host, $port = 80, $secure = false);
-
- /**
- * Send request to the remote server
- *
- * @param string $method
- * @param \Zend\Uri\Uri $url
- * @param string $httpVer
- * @param array $headers
- * @param string $body
- * @return string Request as text
- */
- public function write($method, $url, $httpVer = '1.1', $headers = array(), $body = '');
-
- /**
- * Read response from server
- *
- * @return string
- */
- public function read();
-
- /**
- * Close the connection to the server
- *
- */
- public function close();
-}