Completed
Branch dev (c992ef)
by Darko
06:17
created
nntmux/processing/tv/TVMaze.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\processing\tv;
4 4
 
5
+use JPinkney\TVMaze\TVMaze as Client;
5 6
 use nntmux\ColorCLI;
6 7
 use nntmux\ReleaseImage;
7
-use JPinkney\TVMaze\TVMaze as Client;
8 8
 
9 9
 /**
10 10
  * Class TVMaze.
Please login to merge, or discard this patch.
nntmux/ReleaseExtra.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux;
4 4
 
5
-use nntmux\db\DB;
6 5
 use App\Models\AudioData;
6
+use App\Models\ReleaseExtraFull;
7
+use App\Models\ReleaseSubtitle;
8
+use App\Models\ReleaseUnique;
7 9
 use App\Models\VideoData;
10
+use nntmux\db\DB;
8 11
 use nntmux\utility\Utility;
9
-use App\Models\ReleaseUnique;
10
-use App\Models\ReleaseSubtitle;
11
-use App\Models\ReleaseExtraFull;
12 12
 
13 13
 class ReleaseExtra
14 14
 {
Please login to merge, or discard this patch.
public/admin/console-edit.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
 require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
4 4
 
5
-use nntmux\Genres;
6 5
 use nntmux\Console;
6
+use nntmux\Genres;
7 7
 
8 8
 $page = new AdminPage();
9 9
 $console = new Console(['Settings' => $page->pdo]);
Please login to merge, or discard this patch.
public/admin/music-edit.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
 require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'smarty.php';
4 4
 
5
-use nntmux\Music;
6 5
 use nntmux\Genres;
6
+use nntmux\Music;
7 7
 
8 8
 $page = new AdminPage();
9 9
 $music = new Music();
Please login to merge, or discard this patch.
public/pages/sitemap.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use nntmux\Sitemap;
4
-use nntmux\Contents;
5 3
 use App\Models\Settings;
4
+use nntmux\Contents;
5
+use nntmux\Sitemap;
6 6
 
7 7
 $te = $page->smarty;
8 8
 
Please login to merge, or discard this patch.
nntmux/utility/Utility.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace nntmux\utility;
4 4
 
5
-use nntmux\db\DB;
6
-use nntmux\ColorCLI;
7
-use Ramsey\Uuid\Uuid;
8
-use App\Models\Settings;
9 5
 use App\Extensions\util\Versions;
6
+use App\Models\Settings;
7
+use Ramsey\Uuid\Uuid;
8
+use nntmux\ColorCLI;
9
+use nntmux\db\DB;
10 10
 
11 11
 /**
12 12
  * Class Utility.
Please login to merge, or discard this patch.
public/pages/contact-us.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use nntmux\Captcha;
4 3
 use App\Mail\ContactUs;
5 4
 use App\Models\Settings;
6 5
 use Illuminate\Support\Facades\Mail;
6
+use nntmux\Captcha;
7 7
 
8 8
 $captcha = new Captcha($page);
9 9
 $msg = '';
Please login to merge, or discard this patch.
app/Extensions/helper/helpers.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use nntmux\XXX;
4
-use nntmux\ColorCLI;
5 3
 use GuzzleHttp\Client;
6 4
 use GuzzleHttp\Cookie\CookieJar;
7 5
 use GuzzleHttp\Cookie\SetCookie;
8 6
 use GuzzleHttp\Exception\RequestException;
7
+use nntmux\ColorCLI;
8
+use nntmux\XXX;
9 9
 
10 10
 if (! function_exists('getRawHtml')) {
11 11
 
Please login to merge, or discard this patch.
nntmux/NZBImport.php 1 patch
Unused Use Statements   +1 added lines, -1 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;
6 5
 use App\Models\Group;
7 6
 use App\Models\Release;
8 7
 use App\Models\Settings;
8
+use nntmux\db\DB;
9 9
 use nntmux\utility\Utility;
10 10
 
11 11
 /**
Please login to merge, or discard this patch.