Completed
Branch dev (c992ef)
by Darko
06:17
created
app/Console/Commands/InstallNntmux.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 App\Console\Commands;
4 4
 
5
-use App\Models\User;
5
+use App\Extensions\util\Versions;
6 6
 use App\Models\Settings;
7
+use App\Models\User;
7 8
 use Illuminate\Console\Command;
8
-use App\Extensions\util\Versions;
9 9
 use Symfony\Component\Process\Process;
10 10
 
11 11
 class InstallNntmux extends Command
Please login to merge, or discard this patch.
app/Console/Commands/NntmuxResetDb.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use App\Models\Group;
6 6
 use App\Models\Settings;
7
-use nntmux\SphinxSearch;
8
-use Illuminate\Support\Carbon;
9 7
 use Illuminate\Console\Command;
8
+use Illuminate\Support\Carbon;
10 9
 use Illuminate\Support\Facades\DB;
11 10
 use Illuminate\Support\Facades\File;
11
+use nntmux\SphinxSearch;
12 12
 
13 13
 class NntmuxResetDb extends Command
14 14
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.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 App\Http\Controllers\Auth;
4 4
 
5
-use App\Models\User;
6
-use nntmux\utility\Utility;
7 5
 use App\Http\Controllers\Controller;
6
+use App\Models\User;
7
+use Illuminate\Foundation\Auth\RegistersUsers;
8 8
 use Illuminate\Support\Facades\Password;
9 9
 use Illuminate\Support\Facades\Validator;
10
-use Illuminate\Foundation\Auth\RegistersUsers;
10
+use nntmux\utility\Utility;
11 11
 
12 12
 class RegisterController extends Controller
13 13
 {
Please login to merge, or discard this patch.
app/Models/Category.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 App\Models;
4 4
 
5
+use Illuminate\Database\Eloquent\Model;
5 6
 use Illuminate\Support\Carbon;
6 7
 use Illuminate\Support\Facades\Cache;
7
-use Illuminate\Database\Eloquent\Model;
8 8
 
9 9
 class Category extends Model
10 10
 {
Please login to merge, or discard this patch.
app/Models/Forumpost.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 App\Models;
4 4
 
5
-use Illuminate\Support\Carbon;
6 5
 use Illuminate\Database\Eloquent\Model;
6
+use Illuminate\Support\Carbon;
7 7
 
8 8
 class Forumpost extends Model
9 9
 {
Please login to merge, or discard this patch.
app/Models/Group.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Models;
4 4
 
5
-use nntmux\NZB;
6
-use nntmux\NNTP;
7
-use nntmux\ColorCLI;
8
-use nntmux\Releases;
9
-use nntmux\ReleaseImage;
5
+use Illuminate\Database\Eloquent\Model;
10 6
 use Illuminate\Support\Carbon;
11 7
 use Illuminate\Support\Facades\DB;
12
-use Illuminate\Database\Eloquent\Model;
8
+use nntmux\ColorCLI;
9
+use nntmux\NNTP;
10
+use nntmux\NZB;
11
+use nntmux\ReleaseImage;
12
+use nntmux\Releases;
13 13
 
14 14
 class Group extends Model
15 15
 {
Please login to merge, or discard this patch.
app/Models/ReleaseComment.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 App\Models;
4 4
 
5
-use Illuminate\Support\Carbon;
6 5
 use Illuminate\Database\Eloquent\Model;
6
+use Illuminate\Support\Carbon;
7 7
 
8 8
 class ReleaseComment extends Model
9 9
 {
Please login to merge, or discard this patch.
app/Models/UserExcludedCategory.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 App\Models;
4 4
 
5
-use Illuminate\Support\Carbon;
6 5
 use Illuminate\Database\Eloquent\Model;
6
+use Illuminate\Support\Carbon;
7 7
 
8 8
 class UserExcludedCategory extends Model
9 9
 {
Please login to merge, or discard this patch.
app/Models/UserSerie.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 App\Models;
4 4
 
5
-use Illuminate\Support\Carbon;
6 5
 use Illuminate\Database\Eloquent\Model;
6
+use Illuminate\Support\Carbon;
7 7
 
8 8
 class UserSerie extends Model
9 9
 {
Please login to merge, or discard this patch.