@@ -32,7 +32,7 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | public function boot() { |
| 34 | 34 | $this->publishes([ |
| 35 | - __DIR__ . '/config/proxy.php' => config_path('proxy.php'), |
|
| 35 | + __DIR__.'/config/proxy.php' => config_path('proxy.php'), |
|
| 36 | 36 | ]); |
| 37 | 37 | |
| 38 | 38 | } |
@@ -166,7 +166,7 @@ |
||
| 166 | 166 | if ($this->callMode === ProxyAux::MODE_TOKEN && $this->useHeader === true) { |
| 167 | 167 | $accessToken = ProxyAux::getQueryValue($inputs, ProxyAux::ACCESS_TOKEN); |
| 168 | 168 | $inputs = ProxyAux::removeQueryValue($inputs, ProxyAux::ACCESS_TOKEN); |
| 169 | - $options = array_add($options, 'headers', [ProxyAux::HEADER_AUTH => 'Bearer ' . $accessToken]); |
|
| 169 | + $options = array_add($options, 'headers', [ProxyAux::HEADER_AUTH => 'Bearer '.$accessToken]); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | if ($method === 'GET') { |