@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function boot() |
16 | 16 | { |
17 | - $this->app->singleton(Forge::class, function ($app) { |
|
17 | + $this->app->singleton(Forge::class, function($app) { |
|
18 | 18 | $token = $app['config']->get('forge.token'); |
19 | 19 | $forge = new Forge(new ApiProvider($token)); |
20 | 20 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $credentials = $forge->credentials(); |
32 | 32 | |
33 | 33 | $headers = ['ID', 'Name', 'Provider']; |
34 | - $rows = collect($credentials)->map(function ($credential) { |
|
34 | + $rows = collect($credentials)->map(function($credential) { |
|
35 | 35 | return [$credential['id'], $credential['name'], $credential['type']]; |
36 | 36 | }); |
37 | 37 |