Completed
Branch master (5718ec)
by Marin
02:25
created
src/Task.php 2 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @param mixed $merchant
144
+     * @param null|Organization $merchant
145 145
      */
146 146
     public function setMerchant($merchant)
147 147
     {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     }
158 158
 
159 159
     /**
160
-     * @param mixed $executor
160
+     * @param null|Organization $executor
161 161
      */
162 162
     public function setExecutor($executor)
163 163
     {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
     }
222 222
 
223 223
     /**
224
-     * @param mixed $completeAfter
224
+     * @param integer|null $completeAfter
225 225
      */
226 226
     public function setCompleteAfter($completeAfter)
227 227
     {
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
     }
238 238
 
239 239
     /**
240
-     * @param mixed $completeBefore
240
+     * @param integer|null $completeBefore
241 241
      */
242 242
     public function setCompleteBefore($completeBefore)
243 243
     {
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     }
366 366
 
367 367
     /**
368
-     * @param mixed $destination
368
+     * @param Destination $destination
369 369
      */
370 370
     public function setDestination($destination)
371 371
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -433,7 +433,7 @@
 block discarded – undo
433 433
      */
434 434
     public function complete($success = true, $notes = null)
435 435
     {
436
-        $this->client->post($this->endpoint .'/'. $this->id .'/complete', [
436
+        $this->client->post($this->endpoint.'/'.$this->id.'/complete', [
437 437
             'json' => [
438 438
                 'completionDetails' => [
439 439
                     'success' => $success,
Please login to merge, or discard this patch.
src/Entity.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
                     }
89 89
 
90 90
                     $subtype = gettype($value[0]);
91
-                    array_walk($value, function ($item) use ($subtype, $property) {
91
+                    array_walk($value, function($item) use ($subtype, $property) {
92 92
                         if (gettype($item) !== $subtype) {
93
-                            throw new \InvalidArgumentException('All array items have to be of the same type for metadata property '. $property);
93
+                            throw new \InvalidArgumentException('All array items have to be of the same type for metadata property '.$property);
94 94
                         }
95 95
                     });
96 96
 
@@ -99,13 +99,13 @@  discard block
 block discarded – undo
99 99
                     }
100 100
                     $allowedSubtypes = ['boolean', 'number', 'string', 'object'];
101 101
                     if (!in_array($subtype, $allowedSubtypes)) {
102
-                        throw new \InvalidArgumentException('Unallowed type of '. $subtype .' for array item of metadata property '. $property);
102
+                        throw new \InvalidArgumentException('Unallowed type of '.$subtype.' for array item of metadata property '.$property);
103 103
                     }
104 104
 
105 105
                     break;
106 106
 
107 107
                 default:
108
-                    throw new \InvalidArgumentException('Unallowed type of '. $type .' for metadata property '. $property);
108
+                    throw new \InvalidArgumentException('Unallowed type of '.$type.' for metadata property '.$property);
109 109
                     break;
110 110
             }
111 111
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function update()
133 133
     {
134
-        $response = $this->client->put($this->endpoint .'/'. $this->id, [
134
+        $response = $this->client->put($this->endpoint.'/'.$this->id, [
135 135
             'json' => $this->toArray()
136 136
         ]);
137 137
 
@@ -146,14 +146,14 @@  discard block
 block discarded – undo
146 146
     public function delete()
147 147
     {
148 148
         try {
149
-            $this->client->delete($this->endpoint .'/'. $this->id);
149
+            $this->client->delete($this->endpoint.'/'.$this->id);
150 150
         } catch (ClientException $e) {
151 151
             $error   = $e->getResponse()->json();
152 152
             $message = $error['message']['message'];
153 153
             if (isset($error['message']['cause'])) {
154
-                $message .= ' '. $error['message']['cause'];
154
+                $message .= ' '.$error['message']['cause'];
155 155
             }
156
-            throw new \Exception('Unable to delete entity: '. $message);
156
+            throw new \Exception('Unable to delete entity: '.$message);
157 157
         }
158 158
 
159 159
         $this->id = null;
Please login to merge, or discard this patch.
src/Webhook.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -11,57 +11,57 @@
 block discarded – undo
11 11
     /**
12 12
      * Task started by worker. Request includes: taskId, data.task
13 13
      */
14
-    const TRIGGER_TASK_STARTED          = 0;
14
+    const TRIGGER_TASK_STARTED = 0;
15 15
 
16 16
     /**
17 17
      * Worker ETA less than or equal to notification threshold. Request includes: taskId, data.task
18 18
      */
19
-    const TRIGGER_TASK_ETA              = 1;
19
+    const TRIGGER_TASK_ETA = 1;
20 20
 
21 21
     /**
22 22
      * Worker arriving, 150 meters away or closer. Request includes: taskId, data.task
23 23
      */
24
-    const TRIGGER_TASK_ARRIVAL          = 2;
24
+    const TRIGGER_TASK_ARRIVAL = 2;
25 25
 
26 26
     /**
27 27
      * Task completed by worker. Request includes: taskId, data.task
28 28
      */
29
-    const TRIGGER_TASK_COMPLETED        = 3;
29
+    const TRIGGER_TASK_COMPLETED = 3;
30 30
 
31 31
     /**
32 32
      * Task failed. Request includes: taskId, data.task
33 33
      */
34
-    const TRIGGER_TASK_FAILED           = 4;
34
+    const TRIGGER_TASK_FAILED = 4;
35 35
 
36 36
     /**
37 37
      * New task created. Request includes: taskId, data.task
38 38
      */
39
-    const TRIGGER_TASK_CREATED          = 6;
39
+    const TRIGGER_TASK_CREATED = 6;
40 40
 
41 41
     /**
42 42
      * Task updated, including assignment changes. Request includes: taskId, data.task
43 43
      */
44
-    const TRIGGER_TASK_UPDATED          = 7;
44
+    const TRIGGER_TASK_UPDATED = 7;
45 45
 
46 46
     /**
47 47
      * Task deleted. Request includes: taskId
48 48
      */
49
-    const TRIGGER_TASK_DELETED          = 8;
49
+    const TRIGGER_TASK_DELETED = 8;
50 50
 
51 51
     /**
52 52
      * Task assigned to worker. Request includes: taskId, data.task
53 53
      */
54
-    const TRIGGER_TASK_ASSIGNED         = 9;
54
+    const TRIGGER_TASK_ASSIGNED = 9;
55 55
 
56 56
     /**
57 57
      * Task unassigned from worker. Request includes: taskId, data.task
58 58
      */
59
-    const TRIGGER_TASK_UNASSIGNED       = 10;
59
+    const TRIGGER_TASK_UNASSIGNED = 10;
60 60
 
61 61
     /**
62 62
      * Worker status changed (0 for off-duty, 1 for on-duty). Request includes: workerId, status, data.worker
63 63
      */
64
-    const TRIGGER_WORKER_DUTY           = 5;
64
+    const TRIGGER_WORKER_DUTY = 5;
65 65
 
66 66
     protected $url;
67 67
     protected $trigger;
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function getWorker($id, $filter = null, $analytics = false): Worker
132 132
     {
133
-        $response = $this->get('workers/'. $id, [
133
+        $response = $this->get('workers/'.$id, [
134 134
             'query' => [
135 135
                 'filter'    => $filter,
136 136
                 'analytics' => $analytics ? 'true' : 'false',
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     public function getTeam($id): Team
194 194
     {
195
-        $response = $this->get('teams/'. $id);
195
+        $response = $this->get('teams/'.$id);
196 196
         return Team::fromJson($response->json(['object' => true]), $this);
197 197
     }
198 198
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     public function getDestination($id): Destination
236 236
     {
237
-        $response = $this->get('destinations/'. $id);
237
+        $response = $this->get('destinations/'.$id);
238 238
         return Destination::fromJson($response->json(['object' => true]), $this);
239 239
     }
240 240
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
      */
266 266
     public function getRecipient($id): Recipient
267 267
     {
268
-        $response = $this->get('recipients/'. $id);
268
+        $response = $this->get('recipients/'.$id);
269 269
         return Recipient::fromJson($response->json(['object' => true]), $this);
270 270
     }
271 271
 
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
      */
335 335
     public function getTask($id): Task
336 336
     {
337
-        $response = $this->get('tasks/'. $id);
337
+        $response = $this->get('tasks/'.$id);
338 338
         return Task::fromJson($response->json(['object' => true]), $this);
339 339
     }
340 340
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
      */
345 345
     public function getTaskByShortId($shortId): Task
346 346
     {
347
-        $response = $this->get('tasks/shortId/'. $shortId);
347
+        $response = $this->get('tasks/shortId/'.$shortId);
348 348
         return Task::fromJson($response->json(['object' => true]), $this);
349 349
     }
350 350
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
             array_unshift($taskIds, $position);
457 457
         }
458 458
 
459
-        $this->put('containers/'. $containerEndpoint .'/'. $targetId, [
459
+        $this->put('containers/'.$containerEndpoint.'/'.$targetId, [
460 460
             'json' => [
461 461
                 'tasks' => $taskIds
462 462
             ]
Please login to merge, or discard this patch.