@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | } |
124 | 124 | |
125 | 125 | $this->location = $this->location ?: self::DEFAULT_LOCATION; |
126 | - $this->required = (bool)$this->required; |
|
126 | + $this->required = (bool) $this->required; |
|
127 | 127 | |
128 | 128 | if (isset($data['items'])) { |
129 | 129 | $this->itemSchema = new Parameter($data['items']); |
@@ -225,8 +225,8 @@ discard block |
||
225 | 225 | private function hasCorrectType($userValue) |
226 | 226 | { |
227 | 227 | // Helper fn to see whether an array is associative (i.e. a JSON object) |
228 | - $isAssociative = function ($value) { |
|
229 | - return is_array($value) && (bool)count(array_filter(array_keys($value), 'is_string')); |
|
228 | + $isAssociative = function($value) { |
|
229 | + return is_array($value) && (bool) count(array_filter(array_keys($value), 'is_string')); |
|
230 | 230 | }; |
231 | 231 | |
232 | 232 | // For params defined as objects, we'll let the user get away with |
@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | { |
14 | 14 | public static function httpErrors() |
15 | 15 | { |
16 | - return function (callable $handler) { |
|
17 | - return function ($request, array $options) use ($handler) { |
|
16 | + return function(callable $handler) { |
|
17 | + return function($request, array $options) use ($handler) { |
|
18 | 18 | return $handler($request, $options)->then( |
19 | - function (ResponseInterface $response) use ($request, $handler) { |
|
19 | + function(ResponseInterface $response) use ($request, $handler) { |
|
20 | 20 | if ($response->getStatusCode() < 400) { |
21 | 21 | return $response; |
22 | 22 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | public static function authHandler(callable $tokenGenerator, Token $token = null) |
31 | 31 | { |
32 | - return function (callable $handler) use ($tokenGenerator, $token) { |
|
32 | + return function(callable $handler) use ($tokenGenerator, $token) { |
|
33 | 33 | return new AuthHandler($handler, $tokenGenerator, $token); |
34 | 34 | }; |
35 | 35 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function __call($methodName, $args) |
140 | 140 | { |
141 | - $e = function ($name) { |
|
141 | + $e = function($name) { |
|
142 | 142 | return new \RuntimeException(sprintf('%s::%s is not defined', $name, get_class($this))); |
143 | 143 | }; |
144 | 144 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | $promise = new Promise( |
152 | - function () use (&$promise, $realMethod, $args) { |
|
152 | + function() use (&$promise, $realMethod, $args) { |
|
153 | 153 | $value = call_user_func_array([$this, $realMethod], $args); |
154 | 154 | $promise->resolve($value); |
155 | 155 | } |
@@ -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; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | /** |
109 | 109 | * @codeCoverageIgnore |
110 | 110 | */ |
111 | - private function addDebugMiddleware(array $options, HandlerStack &$stack) |
|
111 | + private function addDebugMiddleware(array $options, HandlerStack & $stack) |
|
112 | 112 | { |
113 | 113 | if (!empty($options['debugLog']) |
114 | 114 | && !empty($options['logger']) |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | private function stockAuthHandler(array &$options) |
134 | 134 | { |
135 | 135 | if (!isset($options['authHandler'])) { |
136 | - $options['authHandler'] = function () use ($options) { |
|
136 | + $options['authHandler'] = function() use ($options) { |
|
137 | 137 | return $options['identityService']->generateToken($options); |
138 | 138 | }; |
139 | 139 | } |
@@ -85,7 +85,7 @@ |
||
85 | 85 | { |
86 | 86 | $result = []; |
87 | 87 | |
88 | - foreach($a1 as $key => $val) { |
|
88 | + foreach ($a1 as $key => $val) { |
|
89 | 89 | if (!in_array($val, $a2, true)) { |
90 | 90 | $result[$key] = $val; |
91 | 91 | } |
@@ -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 |