@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function register(Container $app) |
14 | 14 | { |
15 | - $app['api'] = function ($app) { |
|
15 | + $app['api'] = function($app) { |
|
16 | 16 | return new Client($app); |
17 | 17 | }; |
18 | 18 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function register(Container $app) |
14 | 14 | { |
15 | - $app['usage_plan'] = function ($app) { |
|
15 | + $app['usage_plan'] = function($app) { |
|
16 | 16 | return new Client($app); |
17 | 17 | }; |
18 | 18 | } |
@@ -158,6 +158,6 @@ |
||
158 | 158 | */ |
159 | 159 | public function withFingerprint() |
160 | 160 | { |
161 | - return (bool)$this->config->get('fingerprint'); |
|
161 | + return (bool) $this->config->get('fingerprint'); |
|
162 | 162 | } |
163 | 163 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | ksort($params); |
15 | 15 | |
16 | - return md5(http_build_query(array_map(function ($item) { |
|
16 | + return md5(http_build_query(array_map(function($item) { |
|
17 | 17 | return md5($item); |
18 | 18 | }, $params))); |
19 | 19 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function register(Container $app) |
14 | 14 | { |
15 | - $app['service'] = function ($app) { |
|
15 | + $app['service'] = function($app) { |
|
16 | 16 | return new Client($app); |
17 | 17 | }; |
18 | 18 | } |