@@ -180,14 +180,14 @@ |
||
180 | 180 | { |
181 | 181 | $operation = $this->getOperation($def); |
182 | 182 | |
183 | - $requestFn = function ($marker) use ($operation, $userVals) { |
|
183 | + $requestFn = function($marker) use ($operation, $userVals) { |
|
184 | 184 | if ($operation->hasParam('marker') && $marker) { |
185 | 185 | $userVals['marker'] = $marker; |
186 | 186 | } |
187 | 187 | return $this->sendRequest($operation, $userVals); |
188 | 188 | }; |
189 | 189 | |
190 | - $resourceFn = function (array $data) { |
|
190 | + $resourceFn = function(array $data) { |
|
191 | 191 | $resource = $this->newInstance(); |
192 | 192 | $resource->populateFromArray($data); |
193 | 193 | return $resource; |
@@ -46,7 +46,7 @@ |
||
46 | 46 | */ |
47 | 47 | public function retrieve() |
48 | 48 | { |
49 | - $response = $this->execute($this->api->getNetwork(), ['id' => (string)$this->id]); |
|
49 | + $response = $this->execute($this->api->getNetwork(), ['id' => (string) $this->id]); |
|
50 | 50 | $this->populateFromResponse($response); |
51 | 51 | } |
52 | 52 |
@@ -71,7 +71,7 @@ |
||
71 | 71 | */ |
72 | 72 | public function retrieve() |
73 | 73 | { |
74 | - $response = $this->execute($this->api->getSubnet(), ['id' => (string)$this->id]); |
|
74 | + $response = $this->execute($this->api->getSubnet(), ['id' => (string) $this->id]); |
|
75 | 75 | $this->populateFromResponse($response); |
76 | 76 | } |
77 | 77 |