From 590a691bc5e6ad2d70efec665a123b43e90a1481 Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Sat, 26 Dec 2015 02:30:16 +0000 Subject: [PATCH] Corrected reference to TrackFileNotFoundException in Album and Playlist classes --- app/Album.php | 1 + app/Playlist.php | 1 + 2 files changed, 2 insertions(+) diff --git a/app/Album.php b/app/Album.php index abe43872..7576efb4 100644 --- a/app/Album.php +++ b/app/Album.php @@ -27,6 +27,7 @@ use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Bus\DispatchesJobs; use Auth; use Cache; +use Poniverse\Ponyfm\Exceptions\TrackFileNotFoundException; use Poniverse\Ponyfm\Traits\TrackCollection; use Poniverse\Ponyfm\Traits\SlugTrait; use Venturecraft\Revisionable\RevisionableTrait; diff --git a/app/Playlist.php b/app/Playlist.php index e9deaf61..309cff0a 100644 --- a/app/Playlist.php +++ b/app/Playlist.php @@ -26,6 +26,7 @@ use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Bus\DispatchesJobs; use Auth; use Cache; +use Poniverse\Ponyfm\Exceptions\TrackFileNotFoundException; use Poniverse\Ponyfm\Traits\TrackCollection; use Poniverse\Ponyfm\Traits\SlugTrait; use Venturecraft\Revisionable\RevisionableTrait;