COM-40 :: Added None Auth class, IPs endpoint and associated tests

This commit is contained in:
Junade Ali
2017-09-04 20:22:23 +01:00
parent 7a60774ec2
commit 4876787118
5 changed files with 110 additions and 0 deletions

18
src/Auth/None.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
/**
* Created by PhpStorm.
* User: junade
* Date: 04/09/2017
* Time: 19:55
*/
namespace Cloudflare\API\Auth;
class None implements Auth
{
public function getHeaders(): array
{
return [];
}
}