diff --git a/Blacklight/Movie.php b/Blacklight/Movie.php index df4a375e8..c46f5f189 100755 --- a/Blacklight/Movie.php +++ b/Blacklight/Movie.php @@ -11,7 +11,9 @@ use App\Models\Release; use App\Models\Category; use App\Models\Settings; use App\Models\MovieInfo; +use Tmdb\Helper\ImageHelper; use Illuminate\Support\Carbon; +use Tmdb\Laravel\Facades\Tmdb; use Blacklight\utility\Utility; use DariusIII\ItunesApi\iTunes; use Blacklight\libraries\FanartTV; @@ -20,8 +22,6 @@ use Illuminate\Support\Facades\File; use Tmdb\Exception\TmdbApiException; use Blacklight\processing\tv\TraktTv; use Illuminate\Support\Facades\Cache; -use Tmdb\Helper\ImageHelper; -use Tmdb\Laravel\Facades\Tmdb; use DariusIII\ItunesApi\Exceptions\MovieNotFoundException; use DariusIII\ItunesApi\Exceptions\SearchNoResultsException; diff --git a/config/tmdb.php b/config/tmdb.php index f6edfc956..450a9707f 100644 --- a/config/tmdb.php +++ b/config/tmdb.php @@ -1,6 +1,5 @@ * @copyright (c) 2014, Mark Redeman */ @@ -10,11 +9,11 @@ return [ */ 'api_key' => env('TMDB_APIKEY', ''), - /** + /* * Client options */ 'options' => [ - /** + /* * Use https */ 'secure' => true, @@ -25,7 +24,7 @@ return [ 'cache' => [ 'enabled' => env('TMDB_CACHE', false), // Keep the path empty or remove it entirely to default to storage/tmdb - 'path' => storage_path('tmdb') + 'path' => storage_path('tmdb'), ], /* @@ -34,7 +33,7 @@ return [ 'log' => [ 'enabled' => env('TMDB_LOG', false), // Keep the path empty or remove it entirely to default to storage/logs/tmdb.log - 'path' => storage_path('logs/tmdb.log') - ] + 'path' => storage_path('logs/tmdb.log'), + ], ], ];