Completed
Push — master ( d672d1...efeb78 )
by PROSPER
06:50
created
app/Http/Controllers/OauthController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-
7
-use App\Http\Requests;
8 6
 use App\Http\Controllers\Controller;
9 7
 use Illuminate\Contracts\Auth\Guard;
10 8
 use Laravel\Socialite\Contracts\Factory as Socialite;
Please login to merge, or discard this patch.
app/Http/Controllers/AccountController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-
7
-use App\Http\Requests;
8 6
 use App\Http\Controllers\Controller;
9 7
 use Illuminate\Contracts\Auth\Guard;
10 8
 use Laravel\Socialite\Contracts\Factory as Socialite;
Please login to merge, or discard this patch.
app/Http/Controllers/LastFmController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function __construct()
24 24
     {
25
-         $this->lastfm = new LastFm(new Browser);
26
-         $this->lastfm->setApiKey(env('LASTFM_API_KEY'));
25
+            $this->lastfm = new LastFm(new Browser);
26
+            $this->lastfm->setApiKey(env('LASTFM_API_KEY'));
27 27
     }
28 28
 
29 29
     /**
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
         $tracks = array_slice($this->getTopTracks(), 0, 10);
40 40
 
41 41
         return view('api.lastfm')->withDetails($details)
42
-                                 ->withAlbums($albums)
43
-                                 ->withTracks($tracks);
42
+                                    ->withAlbums($albums)
43
+                                    ->withTracks($tracks);
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.