@@ -176,14 +176,14 @@ |
||
176 | 176 | |
177 | 177 | if ( ! starts_with($url, '/')) |
178 | 178 | { |
179 | - $url = '/' . $url; |
|
179 | + $url = '/'.$url; |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | $queryString = $this->request->getQueryString(); |
183 | 183 | |
184 | 184 | if ($queryString) |
185 | 185 | { |
186 | - $url .= '?' . $queryString; |
|
186 | + $url .= '?'.$queryString; |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | return $url; |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | { |
33 | 33 | $this->app->configure('understand_lumen'); |
34 | 34 | |
35 | - $configPath = __DIR__ . '/../config/understand_lumen.php'; |
|
35 | + $configPath = __DIR__.'/../config/understand_lumen.php'; |
|
36 | 36 | $this->mergeConfigFrom($configPath, 'understand_lumen'); |
37 | 37 | } |
38 | 38 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | $handlerType = $this->app['config']->get('understand_lumen.handler', 'sync'); |
47 | 47 | $inputToken = $this->app['config']->get('understand_lumen.token'); |
48 | - $apiUrl = $this->app['config']->get('understand_lumen.url' ,'https://api.understand.io'); |
|
48 | + $apiUrl = $this->app['config']->get('understand_lumen.url', 'https://api.understand.io'); |
|
49 | 49 | $silent = $this->app['config']->get('understand_lumen.silent', true); |
50 | 50 | $sslBundlePath = $this->app['config']->get('understand_lumen.ssl_bundle_path', false); |
51 | 51 | $metaFields = $this->app['config']->get('understand_lumen.meta', []); |