Completed
Push — master ( 55f844...461c20 )
by Chris
01:52
created
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/Cloudflare.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
         $configDist = $config.'.dist';
26 26
         $dir = $_SERVER['DOCUMENT_ROOT'];
27 27
 
28
-        if (@file_exists($dir . $config)) {
28
+        if (@file_exists($dir.$config)) {
29 29
             $load = $config;
30
-        } elseif (@file_exists($dir . $configDist)) {
30
+        } elseif (@file_exists($dir.$configDist)) {
31 31
             $load = $configDist;
32 32
         } else {
33 33
             die('Unable to load either "'.$config.'" or "'.$configDist.'"');
Please login to merge, or discard this patch.
src/Traits/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.