Completed
Branch develop (e081a1)
by Chris
05:31
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/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.