diff --git a/Blacklight/libraries/Forking.php b/Blacklight/libraries/Forking.php index f9fc9fa92..c6fe85bfc 100755 --- a/Blacklight/libraries/Forking.php +++ b/Blacklight/libraries/Forking.php @@ -6,7 +6,6 @@ use App\Models\Settings; use App\Models\UsenetGroup; use Blacklight\ColorCLI; use Blacklight\Nfo; -use Blacklight\NNTP; use Blacklight\NZB; use Blacklight\processing\PostProcess; use Illuminate\Support\Carbon; diff --git a/Blacklight/utility/Utility.php b/Blacklight/utility/Utility.php index 8e8f11dcd..8cf02b8e2 100755 --- a/Blacklight/utility/Utility.php +++ b/Blacklight/utility/Utility.php @@ -2,7 +2,6 @@ namespace Blacklight\utility; -use App\Models\Settings; use Illuminate\Contracts\Pagination\LengthAwarePaginator; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\File; diff --git a/app/Console/Commands/CleanNZB.php b/app/Console/Commands/CleanNZB.php index 577b9975b..3cbba41a9 100644 --- a/app/Console/Commands/CleanNZB.php +++ b/app/Console/Commands/CleanNZB.php @@ -3,7 +3,6 @@ namespace App\Console\Commands; use App\Models\Release; -use App\Models\Settings; use Blacklight\NZB; use Blacklight\ReleaseImage; use Blacklight\Releases; diff --git a/app/Console/Commands/InstallNntmux.php b/app/Console/Commands/InstallNntmux.php index 685d81c0a..e35abdfbc 100644 --- a/app/Console/Commands/InstallNntmux.php +++ b/app/Console/Commands/InstallNntmux.php @@ -2,7 +2,6 @@ namespace App\Console\Commands; -use App\Models\Settings; use App\Models\User; use Illuminate\Console\Command; use Illuminate\Support\Facades\File; diff --git a/app/Console/Commands/NntmuxResetDb.php b/app/Console/Commands/NntmuxResetDb.php index ec6111314..c4510d3df 100644 --- a/app/Console/Commands/NntmuxResetDb.php +++ b/app/Console/Commands/NntmuxResetDb.php @@ -2,7 +2,6 @@ namespace App\Console\Commands; -use App\Models\Settings; use App\Models\UsenetGroup; use Blacklight\ManticoreSearch; use Illuminate\Console\Command; diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php index 85000f1c3..67f781326 100644 --- a/app/Http/Controllers/Auth/ForgotPasswordController.php +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -4,7 +4,6 @@ namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Jobs\SendPasswordForgottenEmail; -use App\Models\Settings; use App\Models\User; use Illuminate\Foundation\Auth\SendsPasswordResetEmails; use Illuminate\Http\Request; diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php index 682ddafc3..a65a3c1e2 100644 --- a/app/Http/Controllers/Auth/LoginController.php +++ b/app/Http/Controllers/Auth/LoginController.php @@ -5,7 +5,6 @@ namespace App\Http\Controllers\Auth; use App\Events\UserLoggedIn; use App\Http\Controllers\Controller; use App\Http\Requests\Auth\LoginLoginRequest; -use App\Models\Settings; use App\Models\User; use Illuminate\Contracts\Foundation\Application; use Illuminate\Foundation\Auth\AuthenticatesUsers; diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php index 0bd974d50..0f3e22ca5 100644 --- a/app/Http/Controllers/Auth/ResetPasswordController.php +++ b/app/Http/Controllers/Auth/ResetPasswordController.php @@ -4,7 +4,6 @@ namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Jobs\SendPasswordResetEmail; -use App\Models\Settings; use App\Models\User; use Illuminate\Foundation\Auth\ResetsPasswords; use Illuminate\Http\Request; diff --git a/app/Http/Controllers/BasePageController.php b/app/Http/Controllers/BasePageController.php index 173dadcdb..a42ddbccd 100644 --- a/app/Http/Controllers/BasePageController.php +++ b/app/Http/Controllers/BasePageController.php @@ -4,7 +4,6 @@ namespace App\Http\Controllers; use App\Events\UserLoggedIn; use App\Models\Category; -use App\Models\Forumpost; use App\Models\Settings; use App\Models\User; use Blacklight\Contents; diff --git a/app/Http/Controllers/ForumController.php b/app/Http/Controllers/ForumController.php index a2f4754e9..880780477 100644 --- a/app/Http/Controllers/ForumController.php +++ b/app/Http/Controllers/ForumController.php @@ -3,7 +3,6 @@ namespace App\Http\Controllers; use App\Models\Forumpost; -use App\Models\Settings; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 69626d011..584a4196f 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -4,11 +4,9 @@ namespace App\Http\Controllers; use App\Jobs\SendAccountDeletedEmail; use App\Models\ReleaseComment; -use App\Models\Settings; use App\Models\User; use App\Models\UserDownload; use App\Models\UserRequest; -use Blacklight\utility\Utility; use Illuminate\Contracts\View\Factory; use Illuminate\Contracts\View\View; use Illuminate\Foundation\Application; diff --git a/misc/testing/Dev/clean_nzbs.php b/misc/testing/Dev/clean_nzbs.php index 5f0d10be3..e6f36f67a 100644 --- a/misc/testing/Dev/clean_nzbs.php +++ b/misc/testing/Dev/clean_nzbs.php @@ -3,7 +3,6 @@ require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; use App\Models\Release; -use App\Models\Settings; use Blacklight\ColorCLI; use Blacklight\NZB; use Blacklight\ReleaseImage; diff --git a/misc/testing/Releases/fixReleaseNames.php b/misc/testing/Releases/fixReleaseNames.php index 6e572246d..75203741f 100755 --- a/misc/testing/Releases/fixReleaseNames.php +++ b/misc/testing/Releases/fixReleaseNames.php @@ -9,7 +9,6 @@ require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; -use App\Models\Settings; use Blacklight\ColorCLI; use Blacklight\NameFixer; use Blacklight\NNTP; diff --git a/misc/update/postprocess.php b/misc/update/postprocess.php index 00374ab96..eb607eb4c 100644 --- a/misc/update/postprocess.php +++ b/misc/update/postprocess.php @@ -2,7 +2,6 @@ require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; -use App\Models\Settings; use Blacklight\NNTP; use Blacklight\processing\PostProcess; diff --git a/misc/update/tmux/bin/groupfixrelnames.php b/misc/update/tmux/bin/groupfixrelnames.php index b7d08046f..14c448deb 100644 --- a/misc/update/tmux/bin/groupfixrelnames.php +++ b/misc/update/tmux/bin/groupfixrelnames.php @@ -5,7 +5,6 @@ require_once dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; use App\Models\Category; use App\Models\Predb; use App\Models\Release; -use App\Models\Settings; use Blacklight\ColorCLI; use Blacklight\NameFixer; use Blacklight\Nfo;