diff --git a/Blacklight/Backfill.php b/Blacklight/Backfill.php index e5436b575..26d45c058 100755 --- a/Blacklight/Backfill.php +++ b/Blacklight/Backfill.php @@ -2,8 +2,8 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Settings; +use App\Models\UsenetGroup; use Illuminate\Support\Carbon; use Illuminate\Support\Facades\DB; diff --git a/Blacklight/Binaries.php b/Blacklight/Binaries.php index aced9df99..423d0dcce 100755 --- a/Blacklight/Binaries.php +++ b/Blacklight/Binaries.php @@ -2,9 +2,9 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Settings; use App\Models\Collection; +use App\Models\UsenetGroup; use Illuminate\Support\Str; use Illuminate\Support\Carbon; use App\Models\BinaryBlacklist; diff --git a/Blacklight/Categorize.php b/Blacklight/Categorize.php index 46409eb56..9eb705afa 100755 --- a/Blacklight/Categorize.php +++ b/Blacklight/Categorize.php @@ -2,9 +2,9 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Category; use App\Models\Settings; +use App\Models\UsenetGroup; /** * Categorizing of releases by name/group. diff --git a/Blacklight/IRCScraper.php b/Blacklight/IRCScraper.php index 3e5ebee38..eb074f015 100755 --- a/Blacklight/IRCScraper.php +++ b/Blacklight/IRCScraper.php @@ -2,8 +2,8 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Predb; +use App\Models\UsenetGroup; use Illuminate\Support\Carbon; use Illuminate\Support\Facades\DB; diff --git a/Blacklight/NZBImport.php b/Blacklight/NZBImport.php index ae9833757..64cc59fba 100755 --- a/Blacklight/NZBImport.php +++ b/Blacklight/NZBImport.php @@ -2,9 +2,9 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Release; use App\Models\Settings; +use App\Models\UsenetGroup; use Blacklight\utility\Utility; use Illuminate\Support\Facades\File; diff --git a/Blacklight/NameFixer.php b/Blacklight/NameFixer.php index fc927304e..446874dd7 100755 --- a/Blacklight/NameFixer.php +++ b/Blacklight/NameFixer.php @@ -2,10 +2,10 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Predb; use App\Models\Release; use App\Models\Category; +use App\Models\UsenetGroup; use Illuminate\Support\Arr; use Blacklight\utility\Utility; use Blacklight\processing\PostProcess; diff --git a/Blacklight/Nfo.php b/Blacklight/Nfo.php index 2e1988980..ec44ac9b9 100755 --- a/Blacklight/Nfo.php +++ b/Blacklight/Nfo.php @@ -2,10 +2,10 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Release; use App\Models\Settings; use App\Models\ReleaseNfo; +use App\Models\UsenetGroup; use dariusiii\rarinfo\SfvInfo; use Blacklight\utility\Utility; use dariusiii\rarinfo\Par2Info; diff --git a/Blacklight/Regexes.php b/Blacklight/Regexes.php index ba7a85eb8..45ea03f97 100755 --- a/Blacklight/Regexes.php +++ b/Blacklight/Regexes.php @@ -2,9 +2,9 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Release; use App\Models\Category; +use App\Models\UsenetGroup; use Illuminate\Support\Arr; use App\Models\CategoryRegex; use App\Models\CollectionRegex; diff --git a/Blacklight/Releases.php b/Blacklight/Releases.php index 90f74b873..ec12f484f 100755 --- a/Blacklight/Releases.php +++ b/Blacklight/Releases.php @@ -2,11 +2,11 @@ namespace Blacklight; -use App\Models\UsenetGroup; use App\Models\Release; use App\Models\Category; use App\Models\Settings; use Chumper\Zipper\Zipper; +use App\Models\UsenetGroup; use Illuminate\Support\Arr; use Blacklight\utility\Utility; use Illuminate\Support\Facades\DB; diff --git a/Blacklight/http/API.php b/Blacklight/http/API.php index 758ffbd14..12048b46a 100755 --- a/Blacklight/http/API.php +++ b/Blacklight/http/API.php @@ -21,9 +21,9 @@ namespace Blacklight\http; -use App\Models\UsenetGroup; use App\Models\Category; use App\Models\AudioData; +use App\Models\UsenetGroup; use Blacklight\utility\Utility; /** diff --git a/Blacklight/processing/PostProcess.php b/Blacklight/processing/PostProcess.php index 8f66315ba..53dcf670c 100755 --- a/Blacklight/processing/PostProcess.php +++ b/Blacklight/processing/PostProcess.php @@ -5,7 +5,6 @@ namespace Blacklight\processing; use Blacklight\Nfo; use Blacklight\XXX; use Blacklight\NNTP; -use App\Models\UsenetGroup; use Blacklight\Books; use Blacklight\Games; use Blacklight\Movie; @@ -17,6 +16,7 @@ use App\Models\Category; use App\Models\Settings; use Blacklight\NameFixer; use App\Models\ReleaseFile; +use App\Models\UsenetGroup; use Illuminate\Support\Carbon; use dariusiii\rarinfo\Par2Info; use Blacklight\processing\tv\TMDB; diff --git a/Blacklight/processing/ProcessReleases.php b/Blacklight/processing/ProcessReleases.php index a085b1678..605b97615 100755 --- a/Blacklight/processing/ProcessReleases.php +++ b/Blacklight/processing/ProcessReleases.php @@ -4,7 +4,6 @@ namespace Blacklight\processing; use Blacklight\NZB; use Blacklight\NNTP; -use App\Models\UsenetGroup; use App\Models\Predb; use Blacklight\Genres; use App\Models\Release; @@ -13,6 +12,7 @@ use App\Models\Settings; use Blacklight\ColorCLI; use Blacklight\Releases; use Blacklight\Categorize; +use App\Models\UsenetGroup; use Illuminate\Support\Str; use App\Models\ReleaseRegex; use Blacklight\ConsoleTools; diff --git a/Blacklight/processing/post/ProcessAdditional.php b/Blacklight/processing/post/ProcessAdditional.php index 9d67c30a5..84fafbf8f 100755 --- a/Blacklight/processing/post/ProcessAdditional.php +++ b/Blacklight/processing/post/ProcessAdditional.php @@ -7,7 +7,6 @@ use Blacklight\Nfo; use Blacklight\NZB; use FFMpeg\FFProbe; use Blacklight\NNTP; -use App\Models\UsenetGroup; use App\Models\Release; use App\Models\Category; use App\Models\Settings; @@ -16,6 +15,7 @@ use Blacklight\Releases; use Blacklight\NameFixer; use Blacklight\Categorize; use App\Models\ReleaseFile; +use App\Models\UsenetGroup; use Blacklight\ReleaseExtra; use Blacklight\ReleaseImage; use Blacklight\SphinxSearch; diff --git a/app/Console/Commands/NntmuxResetDb.php b/app/Console/Commands/NntmuxResetDb.php index 9e72b3c9f..7f8b05bc6 100644 --- a/app/Console/Commands/NntmuxResetDb.php +++ b/app/Console/Commands/NntmuxResetDb.php @@ -2,8 +2,8 @@ namespace App\Console\Commands; -use App\Models\UsenetGroup; use App\Models\Settings; +use App\Models\UsenetGroup; use Blacklight\SphinxSearch; use Illuminate\Console\Command; use Illuminate\Support\Facades\DB; diff --git a/app/Console/Commands/NntmuxResetTruncate.php b/app/Console/Commands/NntmuxResetTruncate.php index c23b94c81..ac42d7383 100644 --- a/app/Console/Commands/NntmuxResetTruncate.php +++ b/app/Console/Commands/NntmuxResetTruncate.php @@ -2,8 +2,8 @@ namespace App\Console\Commands; -use App\Models\UsenetGroup; use App\Models\Release; +use App\Models\UsenetGroup; use Illuminate\Console\Command; use Illuminate\Support\Facades\DB; diff --git a/app/Http/Controllers/Admin/AjaxController.php b/app/Http/Controllers/Admin/AjaxController.php index 711cf4093..2baea1de3 100644 --- a/app/Http/Controllers/Admin/AjaxController.php +++ b/app/Http/Controllers/Admin/AjaxController.php @@ -2,11 +2,11 @@ namespace App\Http\Controllers\Admin; -use App\Models\UsenetGroup; use App\Models\Sharing; use Blacklight\Regexes; use Blacklight\Binaries; use App\Models\SharingSite; +use App\Models\UsenetGroup; use Illuminate\Http\Request; use App\Models\ReleaseComment; use App\Http\Controllers\BasePageController; diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index 2b0e9c638..1f95903eb 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -2,9 +2,9 @@ namespace App\Http\Controllers; -use App\Models\UsenetGroup; use App\Models\Category; use Blacklight\Releases; +use App\Models\UsenetGroup; use Illuminate\Http\Request; class SearchController extends BasePageController diff --git a/misc/update/tmux/bin/update_groups.php b/misc/update/tmux/bin/update_groups.php index 4b6b3ed1c..0dcf20bde 100644 --- a/misc/update/tmux/bin/update_groups.php +++ b/misc/update/tmux/bin/update_groups.php @@ -3,9 +3,9 @@ require_once dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; use Blacklight\NNTP; -use App\Models\UsenetGroup; use Blacklight\ColorCLI; use App\Models\ShortGroup; +use App\Models\UsenetGroup; use Illuminate\Support\Arr; use Blacklight\ConsoleTools; use Illuminate\Support\Facades\DB; diff --git a/misc/update/update_binaries.php b/misc/update/update_binaries.php index 7a8f48fef..d4b04c21e 100644 --- a/misc/update/update_binaries.php +++ b/misc/update/update_binaries.php @@ -3,10 +3,10 @@ require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; use Blacklight\NNTP; -use App\Models\UsenetGroup; use App\Models\Settings; use Blacklight\Binaries; use Blacklight\ColorCLI; +use App\Models\UsenetGroup; $maxHeaders = (int) Settings::settingValue('..max_headers_iteration') ?: 1000000; $colorCli = new ColorCLI();