Test Setup Failed
Push — master ( 0d3cb5...60ebed )
by Alexander
01:07 queued 27s
created
src/Rest/RestRepository.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -273,10 +273,10 @@
 block discarded – undo
273 273
         return $e->getResponse()->getBody()->getContents();
274 274
     }
275 275
     
276
-     /**
277
-     * @param array $response
278
-     * @return array
279
-     */
276
+        /**
277
+         * @param array $response
278
+         * @return array
279
+         */
280 280
     public function generateHeaders(array $response): array
281 281
     {
282 282
         $headers = [];
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      * @param array $data
152 152
      * @return object
153 153
      */
154
-    public function create(array $data= []): object
154
+    public function create(array $data = []): object
155 155
     {
156 156
         throw new \RuntimeException('Not implemented');
157 157
     }
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
 
291 291
     private function addXRequestIdHeader(): void
292 292
     {
293
-        if (!array_key_exists('X-Request-Id',$this->headers)) {
293
+        if (!array_key_exists('X-Request-Id', $this->headers)) {
294 294
             $this->addHeader('X-Request-Id', uniqid($this->uniqidPrefix, true));
295 295
         }
296 296
     }
Please login to merge, or discard this patch.