Added extra endpoints.
This commit is contained in:
14
tests/Endpoints/DNSTest.php
Normal file
14
tests/Endpoints/DNSTest.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: junade
|
||||
* Date: 09/06/2017
|
||||
* Time: 15:31
|
||||
*/
|
||||
|
||||
use Cloudflare\API\Endpoints\DNS;
|
||||
|
||||
class DNSTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
}
|
||||
22
tests/Endpoints/PageRules.php
Normal file
22
tests/Endpoints/PageRules.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: junade
|
||||
* Date: 09/06/2017
|
||||
* Time: 16:17
|
||||
*/
|
||||
|
||||
namespace Cloudflare\API\Adapter;
|
||||
|
||||
|
||||
use Cloudflare\API\Endpoints\API;
|
||||
|
||||
class PageRules implements API
|
||||
{
|
||||
private $adapter;
|
||||
|
||||
public function __construct(Adapter $adapter)
|
||||
{
|
||||
$this->adapter = $adapter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user