mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Apply fixes from StyleCI
[ci skip] [skip ci]
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
+5
-6
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
* @package php-tmdb\laravel
|
||||
* @author Mark Redeman <markredeman@gmail.com>
|
||||
* @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'),
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user