Completed
Branch develop (e081a1)
by Chris
05:31
created
src/Base.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Cloudflare;
3 3
 
4
-use Request;
5
-
6 4
 class Base
7 5
 {
8 6
     public $CF;
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,4 @@
 block discarded – undo
2 2
 /**
3 3
 * @author Chris Hilsdon <[email protected]>
4 4
 */
5
-require __DIR__ . '/../vendor/autoload.php';
5
+require __DIR__.'/../vendor/autoload.php';
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function makeRequest($request = "", $type = "GET")
12 12
     {
13 13
         $client = new Client();
14
-        $this->request = $client->request($type, $this->CF->Endpoint . $request, [
14
+        $this->request = $client->request($type, $this->CF->Endpoint.$request, [
15 15
             'headers' => [
16 16
                 'X-Auth-Key' => $this->CF->APIKEY,
17 17
                 'X-Auth-Email' => $this->CF->Email
Please login to merge, or discard this patch.