Completed
Branch dev (c992ef)
by Darko
06:17
created
app/Extensions/util/Versions.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
 namespace App\Extensions\util;
21 21
 
22 22
 use App\Models\Settings;
23
-use nntmux\utility\Utility;
24 23
 use Illuminate\Database\Eloquent\Collection;
24
+use nntmux\utility\Utility;
25 25
 
26 26
 class Versions extends Collection
27 27
 {
Please login to merge, or discard this patch.
misc/testing/Tests/test_giantbomb_API.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 // Test if your giantbomb key is working.
6 6
 
7
-use nntmux\db\DB;
8 7
 use nntmux\ColorCLI;
8
+use nntmux\db\DB;
9 9
 
10 10
 $giantbombkey = (new DB())->getSetting('giantbombkey');
11 11
 $cli = new ColorCLI();
Please login to merge, or discard this patch.
nntmux/libraries/ForkingImportNZB.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\libraries;
4 4
 
5
-use nntmux\db\DB;
6 5
 use nntmux\ColorCLI;
6
+use nntmux\db\DB;
7 7
 
8 8
 /**
9 9
  * Class ForkingImportNZB.
Please login to merge, or discard this patch.
nntmux/Logging.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6 5
 use App\Models\Settings;
6
+use nntmux\db\DB;
7 7
 
8 8
 /**
9 9
  * Logs/Reports stuff.
Please login to merge, or discard this patch.
nntmux/MiscSorter.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6 5
 use ApaiIO\ApaiIO;
7
-use App\Models\Settings;
8
-use ApaiIO\Operations\Lookup;
9 6
 use ApaiIO\Configuration\GenericConfiguration;
7
+use ApaiIO\Operations\Lookup;
10 8
 use ApaiIO\ResponseTransformer\XmlToSimpleXmlObject;
9
+use App\Models\Settings;
10
+use nntmux\db\DB;
11 11
 
12 12
 /**
13 13
  * Class MiscSorter.
Please login to merge, or discard this patch.
nntmux/NNTP.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6
-use App\Models\Settings;
7 5
 use App\Extensions\util\Yenc;
6
+use App\Models\Settings;
7
+use nntmux\db\DB;
8 8
 
9 9
 /**
10 10
  * Class for connecting to the usenet, retrieving articles and article headers,
Please login to merge, or discard this patch.
nntmux/NZB.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
5
+use App\Extensions\util\Versions;
6 6
 use App\Models\Settings;
7
+use nntmux\db\DB;
7 8
 use nntmux\utility\Utility;
8
-use App\Extensions\util\Versions;
9 9
 
10 10
 /**
11 11
  * Class for reading and writing NZB files on the hard disk,
Please login to merge, or discard this patch.
nntmux/processing/tv/TMDB.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\processing\tv;
4 4
 
5
-use Tmdb\Client;
6
-use Tmdb\ApiToken;
7
-use nntmux\ColorCLI;
8 5
 use App\Models\Settings;
9
-use nntmux\ReleaseImage;
10
-use Tmdb\Helper\ImageHelper;
6
+use Tmdb\ApiToken;
7
+use Tmdb\Client;
11 8
 use Tmdb\Exception\TmdbApiException;
9
+use Tmdb\Helper\ImageHelper;
12 10
 use Tmdb\Repository\ConfigurationRepository;
11
+use nntmux\ColorCLI;
12
+use nntmux\ReleaseImage;
13 13
 
14 14
 class TMDB extends TV
15 15
 {
Please login to merge, or discard this patch.
nntmux/processing/tv/TraktTv.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\processing\tv;
4 4
 
5
-use nntmux\ColorCLI;
6 5
 use App\Models\Settings;
6
+use nntmux\ColorCLI;
7 7
 use nntmux\ReleaseImage;
8
-use nntmux\utility\Time;
9 8
 use nntmux\libraries\TraktAPI;
9
+use nntmux\utility\Time;
10 10
 
11 11
 /**
12 12
  * Class TraktTv.
Please login to merge, or discard this patch.