Completed
Push — master ( cfcf27...c41e28 )
by Phan
14:15
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
     protected function mapWebRoutes()
49 49
     {
50 50
         Route::middleware('web')
51
-             ->namespace($this->namespace)
52
-             ->group(base_path('routes/web.php'));
51
+                ->namespace($this->namespace)
52
+                ->group(base_path('routes/web.php'));
53 53
     }
54 54
 
55 55
     /**
Please login to merge, or discard this patch.
app/Services/iTunesService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     {
26 26
         try {
27 27
             return $this->cache->remember(md5("itunes_track_url_{$term}{$album}{$artist}"), 24 * 60 * 7,
28
-                function () use ($term, $album, $artist): ?string {
28
+                function () use ($term, $album, $artist) : ?string {
29 29
                     $params = [
30 30
                         'term' => $term.($album ? " $album" : '').($artist ? " $artist" : ''),
31 31
                         'media' => 'music',
Please login to merge, or discard this patch.