Completed
Push — master ( 3ffe12...6e16cc )
by Marin
05:50
created
tests/ApiTestCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $request = $this->history->getLastRequest();
53 53
         $this->assertEquals('GET', $request->getMethod());
54 54
 
55
-        $this->assertEquals($this->baseUrl . $path, $request->getUrl());
55
+        $this->assertEquals($this->baseUrl.$path, $request->getUrl());
56 56
     }
57 57
 
58 58
     /**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $this->assertEquals('POST', $request->getMethod());
68 68
         $this->assertEquals('application/json', $request->getHeader('Content-type'));
69 69
 
70
-        $this->assertEquals($this->baseUrl . $path, $request->getUrl());
70
+        $this->assertEquals($this->baseUrl.$path, $request->getUrl());
71 71
 
72 72
         if (null !== $data) {
73 73
             $payload = $request->getBody()->__toString();
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $this->assertEquals('PUT', $request->getMethod());
88 88
         $this->assertEquals('application/json', $request->getHeader('Content-type'));
89 89
 
90
-        $this->assertEquals($this->baseUrl . $path, $request->getUrl());
90
+        $this->assertEquals($this->baseUrl.$path, $request->getUrl());
91 91
 
92 92
         if (null !== $data) {
93 93
             $payload = $request->getBody()->__toString();
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
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/../vendor/autoload.php';
3
+require_once __DIR__.'/../vendor/autoload.php';
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
             $message = $error['message']['message'];
50 50
             if (isset($error['message']['cause'])) {
51 51
                 if (is_array($error['message']['cause'])) {
52
-                    $message .= ' '. implode(', ', $error['message']['cause']);
52
+                    $message .= ' '.implode(', ', $error['message']['cause']);
53 53
                 } else {
54
-                    $message .= ' '. $error['message']['cause'];
54
+                    $message .= ' '.$error['message']['cause'];
55 55
                 }
56 56
             }
57
-            throw new \Exception('Error while calling post on '. $url .': '. $message);
57
+            throw new \Exception('Error while calling post on '.$url.': '.$message);
58 58
         }
59 59
     }
60 60
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function getOrganization($id): Organization
94 94
     {
95
-        $response = $this->get('organizations/'. $id);
95
+        $response = $this->get('organizations/'.$id);
96 96
         return Organization::fromJson($response->json(['object' => true]), $this);
97 97
     }
98 98
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             'filter'    => $filter,
188 188
             'analytics' => $analytics ? 'true' : 'false',
189 189
         ]);
190
-        $response = $this->get('workers/'. $id, compact('query'));
190
+        $response = $this->get('workers/'.$id, compact('query'));
191 191
 
192 192
         return Worker::fromJson($response->json(['object' => true]), $this);
193 193
     }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      */
245 245
     public function getTeam($id): Team
246 246
     {
247
-        $response = $this->get('teams/'. $id);
247
+        $response = $this->get('teams/'.$id);
248 248
         return Team::fromJson($response->json(['object' => true]), $this);
249 249
     }
250 250
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
      */
287 287
     public function getDestination($id): Destination
288 288
     {
289
-        $response = $this->get('destinations/'. $id);
289
+        $response = $this->get('destinations/'.$id);
290 290
         return Destination::fromJson($response->json(['object' => true]), $this);
291 291
     }
292 292
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
      */
318 318
     public function getRecipient($id): Recipient
319 319
     {
320
-        $response = $this->get('recipients/'. $id);
320
+        $response = $this->get('recipients/'.$id);
321 321
         return Recipient::fromJson($response->json(['object' => true]), $this);
322 322
     }
323 323
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
     public function getRecipientByName($name)
329 329
     {
330 330
         $name     = str_replace('+', '%20', urlencode(strtolower($name)));
331
-        $response = $this->get('recipients/name/'. $name);
331
+        $response = $this->get('recipients/name/'.$name);
332 332
 
333 333
         if (null === $response) {
334 334
             return null;
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
     public function getRecipientByPhone($phone)
345 345
     {
346 346
         $phone = preg_replace('/[^\d]/', '', $phone);
347
-        $response = $this->get('recipients/phone/'. $phone);
347
+        $response = $this->get('recipients/phone/'.$phone);
348 348
 
349 349
         if (null === $response) {
350 350
             return null;
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
      */
406 406
     public function getTask($id): Task
407 407
     {
408
-        $response = $this->get('tasks/'. $id);
408
+        $response = $this->get('tasks/'.$id);
409 409
         return Task::fromJson($response->json(['object' => true]), $this);
410 410
     }
411 411
 
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
      */
416 416
     public function getTaskByShortId($shortId): Task
417 417
     {
418
-        $response = $this->get('tasks/shortId/'. $shortId);
418
+        $response = $this->get('tasks/shortId/'.$shortId);
419 419
         return Task::fromJson($response->json(['object' => true]), $this);
420 420
     }
421 421
 
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
             array_unshift($taskIds, $position);
528 528
         }
529 529
 
530
-        $this->put('containers/'. $containerEndpoint .'/'. $targetId, [
530
+        $this->put('containers/'.$containerEndpoint.'/'.$targetId, [
531 531
             'json' => [
532 532
                 'tasks' => $taskIds
533 533
             ]
Please login to merge, or discard this patch.