@@ -8,9 +8,9 @@ |
||
8 | 8 | |
9 | 9 | require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; |
10 | 10 | |
11 | +use App\Models\Settings; |
|
11 | 12 | use nntmux\NZB; |
12 | 13 | use nntmux\db\DB; |
13 | -use App\Models\Settings; |
|
14 | 14 | |
15 | 15 | $pdo = new DB; |
16 | 16 | $nzb = new NZB(); |
@@ -2,9 +2,9 @@ |
||
2 | 2 | |
3 | 3 | require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | 5 | use App\Models\Category; |
7 | 6 | use nntmux\ReleaseImage; |
7 | +use nntmux\db\DB; |
|
8 | 8 | |
9 | 9 | $pdo = new DB(); |
10 | 10 |
@@ -2,17 +2,17 @@ |
||
2 | 2 | |
3 | 3 | require_once dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; |
4 | 4 | |
5 | -use nntmux\Nfo; |
|
6 | -use nntmux\NZB; |
|
7 | -use nntmux\NNTP; |
|
8 | -use nntmux\db\DB; |
|
9 | -use nntmux\ColorCLI; |
|
5 | +use App\Models\Category; |
|
10 | 6 | use App\Models\Predb; |
11 | -use nntmux\NameFixer; |
|
7 | +use App\Models\Settings; |
|
8 | +use nntmux\ColorCLI; |
|
12 | 9 | use nntmux\MiscSorter; |
10 | +use nntmux\NNTP; |
|
11 | +use nntmux\NZB; |
|
13 | 12 | use nntmux\NZBContents; |
14 | -use App\Models\Category; |
|
15 | -use App\Models\Settings; |
|
13 | +use nntmux\NameFixer; |
|
14 | +use nntmux\Nfo; |
|
15 | +use nntmux\db\DB; |
|
16 | 16 | use nntmux\processing\PostProcess; |
17 | 17 | |
18 | 18 | $pdo = new DB(); |
@@ -2,14 +2,14 @@ |
||
2 | 2 | |
3 | 3 | require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php'; |
4 | 4 | |
5 | -use nntmux\Tmux; |
|
6 | -use nntmux\db\DB; |
|
7 | -use nntmux\TmuxRun; |
|
8 | -use nntmux\ColorCLI; |
|
9 | -use nntmux\TmuxOutput; |
|
10 | -use App\Models\Release; |
|
11 | 5 | use App\Models\Category; |
6 | +use App\Models\Release; |
|
12 | 7 | use App\Models\Settings; |
8 | +use nntmux\ColorCLI; |
|
9 | +use nntmux\Tmux; |
|
10 | +use nntmux\TmuxOutput; |
|
11 | +use nntmux\TmuxRun; |
|
12 | +use nntmux\db\DB; |
|
13 | 13 | use nntmux\utility\Utility; |
14 | 14 | |
15 | 15 | $pdo = new DB(); |
@@ -2,9 +2,9 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | 5 | use App\Models\Group; |
7 | 6 | use App\Models\Settings; |
7 | +use nntmux\db\DB; |
|
8 | 8 | |
9 | 9 | class Backfill |
10 | 10 | { |
@@ -2,13 +2,13 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
5 | +use App\Models\BinaryBlacklist; |
|
6 | 6 | use App\Models\Group; |
7 | +use App\Models\MultigroupPoster; |
|
7 | 8 | use App\Models\Settings; |
8 | 9 | use Illuminate\Support\Carbon; |
9 | -use App\Models\BinaryBlacklist; |
|
10 | -use App\Models\MultigroupPoster; |
|
11 | 10 | use Illuminate\Support\Facades\Cache; |
11 | +use nntmux\db\DB; |
|
12 | 12 | use nntmux\processing\ProcessReleasesMultiGroup; |
13 | 13 | |
14 | 14 | /** |
@@ -2,19 +2,19 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | 5 | use ApaiIO\ApaiIO; |
7 | -use GuzzleHttp\Client; |
|
8 | -use App\Models\Release; |
|
6 | +use ApaiIO\Configuration\GenericConfiguration; |
|
7 | +use ApaiIO\Operations\Search; |
|
8 | +use ApaiIO\Request\GuzzleRequest; |
|
9 | +use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
9 | 10 | use App\Models\BookInfo; |
10 | 11 | use App\Models\Category; |
12 | +use App\Models\Release; |
|
11 | 13 | use App\Models\Settings; |
12 | -use ApaiIO\Operations\Search; |
|
14 | +use GuzzleHttp\Client; |
|
13 | 15 | use Illuminate\Support\Carbon; |
14 | -use ApaiIO\Request\GuzzleRequest; |
|
15 | 16 | use Illuminate\Support\Facades\Cache; |
16 | -use ApaiIO\Configuration\GenericConfiguration; |
|
17 | -use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
17 | +use nntmux\db\DB; |
|
18 | 18 | |
19 | 19 | class Books |
20 | 20 | { |
@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use App\Models\Group; |
|
6 | 5 | use App\Models\Category; |
6 | +use App\Models\Group; |
|
7 | 7 | use App\Models\Settings; |
8 | 8 | |
9 | 9 | /** |
@@ -2,19 +2,19 @@ |
||
2 | 2 | |
3 | 3 | namespace nntmux; |
4 | 4 | |
5 | -use nntmux\db\DB; |
|
6 | 5 | use ApaiIO\ApaiIO; |
7 | -use GuzzleHttp\Client; |
|
8 | -use App\Models\Release; |
|
6 | +use ApaiIO\Configuration\GenericConfiguration; |
|
7 | +use ApaiIO\Operations\Search; |
|
8 | +use ApaiIO\Request\GuzzleRequest; |
|
9 | +use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
9 | 10 | use App\Models\Category; |
10 | -use App\Models\Settings; |
|
11 | 11 | use App\Models\ConsoleInfo; |
12 | -use ApaiIO\Operations\Search; |
|
12 | +use App\Models\Release; |
|
13 | +use App\Models\Settings; |
|
14 | +use GuzzleHttp\Client; |
|
13 | 15 | use Illuminate\Support\Carbon; |
14 | -use ApaiIO\Request\GuzzleRequest; |
|
15 | 16 | use Illuminate\Support\Facades\Cache; |
16 | -use ApaiIO\Configuration\GenericConfiguration; |
|
17 | -use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject; |
|
17 | +use nntmux\db\DB; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Class Console. |