Completed
Push — master ( 0df572...d97254 )
by Timur
02:33
created
src/Laravel/ForgeServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Laravel/Commands/ForgeCredentials.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.