Updated TLS.php and added new endpoints to new ZoneSettings.php
This commit is contained in:
76
src/Adapter/Adapter.php
Normal file
76
src/Adapter/Adapter.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/**
|
||||
* User: junade
|
||||
* Date: 13/01/2017
|
||||
* Time: 16:06
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Adapter;
|
||||
|
||||
use Cloudflare\API\Auth\Auth;
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
|
||||
/**
|
||||
* Interface Adapter
|
||||
* @package Cloudflare\API\Adapter
|
||||
* Note that the $body fields expect a JSON key value store.
|
||||
*/
|
||||
interface Adapter
|
||||
{
|
||||
/**
|
||||
* Adapter constructor.
|
||||
*
|
||||
* @param Auth $auth
|
||||
* @param string $baseURI
|
||||
*/
|
||||
public function __construct(Auth $auth, string $baseURI);
|
||||
|
||||
/**
|
||||
* Sends a GET request.
|
||||
* Per Robustness Principle - not including the ability to send a body with a GET request (though possible in the
|
||||
* RFCs, it is never useful).
|
||||
*
|
||||
* @param string $uri
|
||||
* @param array $data
|
||||
* @param array $headers
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function get(string $uri, array $data = [], array $headers = []): ResponseInterface;
|
||||
|
||||
/**
|
||||
* @param string $uri
|
||||
* @param array $data
|
||||
* @param array $headers
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function post(string $uri, array $data = [], array $headers = []): ResponseInterface;
|
||||
|
||||
/**
|
||||
* @param string $uri
|
||||
* @param array $data
|
||||
* @param array $headers
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function put(string $uri, array $data = [], array $headers = []): ResponseInterface;
|
||||
|
||||
/**
|
||||
* @param string $uri
|
||||
* @param array $data
|
||||
* @param array $headers
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function patch(string $uri, array $data = [], array $headers = []): ResponseInterface;
|
||||
|
||||
/**
|
||||
* @param string $uri
|
||||
* @param array $data
|
||||
* @param array $headers
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function delete(string $uri, array $data = [], array $headers = []): ResponseInterface;
|
||||
}
|
||||
Reference in New Issue
Block a user