refactor: newline after statement

This commit is contained in:
HDVinnie
2021-09-28 12:49:46 -04:00
parent 86a1d5c728
commit 2a53cea216
142 changed files with 660 additions and 2 deletions
@@ -94,6 +94,7 @@ class PlaylistController extends Controller
->withInput()
->withErrors($v->errors());
}
$playlist->save();
// Announce To Shoutbox
$appurl = \config('app.url');
@@ -127,6 +128,7 @@ class PlaylistController extends Controller
if ($torrent->category->tv_meta && ($torrent->tmdb || $torrent->tmdb != 0)) {
$meta = Tv::with('genres', 'networks', 'seasons')->where('id', '=', $torrent->tmdb)->first();
}
if ($torrent->category->movie_meta && ($torrent->tmdb || $torrent->tmdb != 0)) {
$meta = Movie::with('genres', 'cast', 'companies', 'collection')->where('id', '=', $torrent->tmdb)->first();
}
@@ -201,6 +203,7 @@ class PlaylistController extends Controller
->withInput()
->withErrors($v->errors());
}
$playlist->save();
return \redirect()->route('playlists.show', ['id' => $playlist->id])