@@ -32,7 +32,7 @@ discard block |
||
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 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @return void |
53 | 53 | */ |
54 | 54 | public function registerApiProxy() { |
55 | - $this->app->bindShared('api-proxy.proxy', function ($app) { |
|
55 | + $this->app->bindShared('api-proxy.proxy', function($app) { |
|
56 | 56 | $params = $app['config']['proxy']; |
57 | 57 | $proxy = new Proxy($params); |
58 | 58 | return $proxy; |