Completed
Push — master ( d672d1...efeb78 )
by PROSPER
06:50
created
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.