@@ -52,7 +52,7 @@ |
||
52 | 52 | */ |
53 | 53 | private function encodeUriParameters(array $uriParameters): array |
54 | 54 | { |
55 | - return array_map(function ($uriParameter) { |
|
55 | + return array_map(function($uriParameter) { |
|
56 | 56 | $uriParameter = rawurlencode((string)$uriParameter); |
57 | 57 | return preg_replace('~\%2F~', '/', $uriParameter); |
58 | 58 | }, $uriParameters); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | ): PageInterface { |
37 | 37 | $totalCount = (int)$meta['total']; |
38 | 38 | $limit = isset($meta['page_input']) ? (int)$meta['page_input']['limit'] : null; |
39 | - $offset = isset($meta['page_input']) ? (int)$meta['page_input']['offset']: null; |
|
39 | + $offset = isset($meta['page_input']) ? (int)$meta['page_input']['offset'] : null; |
|
40 | 40 | |
41 | 41 | return new Page( |
42 | 42 | new PageFactory($this->httpClient), |