Completed
Push — master ( c9d582...b0831b )
by Tom
04:50
created
src/HttpClient/GuzzleHttpClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 
14 14
     public function __construct()
15 15
     {
16
-        $this->dbPath = __DIR__.'/../../testapi/endpoints.db';
16
+        $this->dbPath = __DIR__ . '/../../testapi/endpoints.db';
17 17
 
18 18
         $this->writeEndpoints([]);
19 19
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $response = $client->get($url);
57 57
 
58 58
         return new Response(
59
-            'data://text/plain,'.(string) $response->getBody(),
59
+            'data://text/plain,' . (string) $response->getBody(),
60 60
             $response->getStatusCode(),
61 61
             $response->getHeaders()
62 62
         );
Please login to merge, or discard this patch.
features/bootstrap/FeatureContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     public function iMakeAGetRequestTo($url)
72 72
     {
73 73
         try {
74
-            $this->response = $this->client->get($this->urlPrefix.$url);
74
+            $this->response = $this->client->get($this->urlPrefix . $url);
75 75
         } catch (HalClientException $error) {
76 76
             $this->error = $error;
77 77
         }
Please login to merge, or discard this patch.