Finished Guzzle implementation, started work on Endpoints.

This commit is contained in:
Junade Ali
2017-02-01 18:07:33 +00:00
parent a49c655e77
commit 5fcb00153b
15 changed files with 912 additions and 44 deletions

16
src/Endpoints/API.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
/**
* User: junade
* Date: 01/02/2017
* Time: 12:31
*/
namespace Cloudflare\API\Endpoints;
use Cloudflare\API\Adapter\Adapter;
interface API
{
public function __construct(Adapter $adapter);
}