Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
DariusIII
2018-12-03 13:22:12 +00:00
committed by StyleCI Bot
parent 1267a103fe
commit f244f95b36
2 changed files with 7 additions and 8 deletions
+2 -2
View File
@@ -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
View File
@@ -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'),
],
],
];