Completed
Push — master ( b6852d...faf728 )
by Daniel
07:32
created
src/Api/Agent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         $response = $this->client->get('agents', $params);
21 21
 
22
-        return collect($response->agents)->transform(function ($agent) {
22
+        return collect($response->agents)->transform(function($agent) {
23 23
             return new Model($agent, $this->client);
24 24
         });
25 25
     }
Please login to merge, or discard this patch.
src/Api/Attachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $response = $this->client->get('attachments', ['message' => $messageID]);
19 19
 
20
-        return collect($response->attachments)->transform(function ($attachment) {
20
+        return collect($response->attachments)->transform(function($attachment) {
21 21
             return new Model($attachment, $this->client);
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
src/Api/Mailbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $response = $this->client->get('mailboxes');
18 18
 
19
-        return collect($response->mailboxes)->transform(function ($ticket) {
19
+        return collect($response->mailboxes)->transform(function($ticket) {
20 20
             return new Model($ticket, $this->client);
21 21
         });
22 22
     }
Please login to merge, or discard this patch.
src/Api/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     {
19 19
         $response = $this->client->get("tickets/$ticketNumber/messages", $params);
20 20
 
21
-        return collect($response->messages)->transform(function ($ticket) {
21
+        return collect($response->messages)->transform(function($ticket) {
22 22
             return new Model($ticket, $this->client);
23 23
         });
24 24
     }
Please login to merge, or discard this patch.
src/Api/Group.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     {
17 17
         $response = $this->client->get('groups');
18 18
 
19
-        return collect($response->groups)->transform(function ($group) {
19
+        return collect($response->groups)->transform(function($group) {
20 20
             return new Model($group, $this->client);
21 21
         });
22 22
     }
Please login to merge, or discard this patch.
src/Api/Ticket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
         $response = $this->client->get('tickets', $params);
37 37
 
38
-        return collect($response->tickets)->transform(function ($ticket) {
38
+        return collect($response->tickets)->transform(function($ticket) {
39 39
             return new Model($ticket, $this->client);
40 40
         });
41 41
     }
Please login to merge, or discard this patch.
src/Api/Customer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $response = $this->client->get('customers', $params);
19 19
 
20
-        return collect($response->customers)->transform(function ($customer) {
20
+        return collect($response->customers)->transform(function($customer) {
21 21
             return new Model($customer, $this->client);
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
src/Api/Folder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         $response = $this->client->get('folders', $params);
19 19
 
20
-        return collect($response->folders)->map(function ($folder) {
20
+        return collect($response->folders)->map(function($folder) {
21 21
             return new Model($folder, $this->client);
22 22
         });
23 23
     }
Please login to merge, or discard this patch.