@@ -34,12 +34,12 @@ discard block |
||
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 |
||
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 |