Completed
Push — master ( 88f0a8...d038c4 )
by Mario
02:50
created
src/Service/WorkspaceUsers/WorkspaceUsersService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,12 +34,12 @@  discard block
 block discarded – undo
34 34
         $response = $this->delegate($request);
35 35
 
36 36
         $workspaceUsers = array();
37
-        foreach($response->body['data'] as $workspaceUser) {
37
+        foreach ($response->body['data'] as $workspaceUser) {
38 38
             $workspaceUsers[] = $this->hydrator->hydrate($workspaceUser, new User());
39 39
         }
40 40
 
41 41
         $notifications = array();
42
-        foreach($response->body['notifications'] as $notification) {
42
+        foreach ($response->body['notifications'] as $notification) {
43 43
             $notifications[] = new Notification(
44 44
                 array(
45 45
                     'message' => $notification,
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $response = $this->delegate($request);
105 105
 
106 106
         $workspaceUsers = array();
107
-        foreach($response->body as $workspaceUser) {
107
+        foreach ($response->body as $workspaceUser) {
108 108
             $workspaceUsers[] = $this->hydrator->hydrate($workspaceUser, new User());
109 109
         }
110 110
 
Please login to merge, or discard this patch.