Completed
Push — master ( c88b16...2d5c1e )
by Elf
08:24 queued 05:59
created
app/Http/Controllers/Admin/Admin/ProfileController.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\Http\Controllers\Admin\Admin;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use App\Http\Controllers\Controller;
6
+use Illuminate\Http\Request;
7 7
 
8 8
 class ProfileController extends Controller
9 9
 {
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.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\Providers;
4 4
 
5
-use Illuminate\Support\Facades\Route;
6 5
 use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
6
+use Illuminate\Support\Facades\Route;
7 7
 
8 8
 class RouteServiceProvider extends ServiceProvider
9 9
 {
Please login to merge, or discard this patch.
app/DataTables/AdminUsersDataTable.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace App\DataTables;
4 4
 
5 5
 use App\Models\AdminUser;
6
-use Illuminate\Support\Facades\Auth;
7 6
 use App\Support\Datatables\Services\DataTable;
7
+use Illuminate\Support\Facades\Auth;
8 8
 
9 9
 class AdminUsersDataTable extends DataTable
10 10
 {
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Exceptions;
4 4
 
5
-use Exception;
6 5
 use App\Http\ApiResponse;
7 6
 use App\Jobs\SendBearyChat;
7
+use Exception;
8 8
 use Illuminate\Auth\AuthenticationException;
9
-use Illuminate\Validation\ValidationException;
10
-use Symfony\Component\HttpKernel\Exception\HttpException;
11 9
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
12 10
 use Illuminate\Foundation\Http\Exceptions\MaintenanceModeException;
11
+use Illuminate\Validation\ValidationException;
12
+use Symfony\Component\HttpKernel\Exception\HttpException;
13 13
 
14 14
 class Handler extends ExceptionHandler
15 15
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/Admin/UserController.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\Http\Controllers\Admin\Admin;
4 4
 
5
+use App\DataTables\AdminUsersDataTable;
6
+use App\Http\Controllers\Controller;
5 7
 use App\Models\AdminUser;
6 8
 use Illuminate\Http\Request;
7
-use App\Http\Controllers\Controller;
8
-use App\DataTables\AdminUsersDataTable;
9 9
 
10 10
 class UserController extends Controller
11 11
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/Auth/LoginController.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\Http\Controllers\Admin\Admin;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use App\Http\Controllers\Controller;
6
+use Illuminate\Http\Request;
7 7
 
8 8
 class ProfileController extends Controller
9 9
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/Auth/ResetPasswordController.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\Http\Controllers\Admin\Auth;
4 4
 
5
-use Password;
6
-use Illuminate\Http\Request;
7 5
 use App\Http\Controllers\Controller;
8 6
 use Illuminate\Foundation\Auth\ResetsPasswords;
7
+use Illuminate\Http\Request;
8
+use Password;
9 9
 
10 10
 class ResetPasswordController extends Controller
11 11
 {
Please login to merge, or discard this patch.
app/Jobs/SendBearyChat.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Jobs;
4 4
 
5
-use Illuminate\Bus\Queueable;
6 5
 use ElfSundae\BearyChat\Message;
7
-use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Queue\InteractsWithQueue;
6
+use Illuminate\Bus\Queueable;
9 7
 use Illuminate\Contracts\Queue\ShouldQueue;
8
+use Illuminate\Queue\InteractsWithQueue;
9
+use Illuminate\Queue\SerializesModels;
10 10
 
11 11
 class SendBearyChat implements ShouldQueue
12 12
 {
Please login to merge, or discard this patch.
app/Models/AdminUser.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Models;
4 4
 
5
+use App\Notifications\ResetPassword;
5 6
 use App\Support\Helper;
6 7
 use App\Support\Image\Filters\Fit;
7
-use App\Notifications\ResetPassword;
8 8
 use App\Support\Traits\ImageStorage;
9
-use Illuminate\Notifications\Notifiable;
10 9
 use Iatstuti\Database\Support\NullableFields;
11 10
 use Illuminate\Foundation\Auth\User as Authenticatable;
11
+use Illuminate\Notifications\Notifiable;
12 12
 
13 13
 class AdminUser extends Authenticatable
14 14
 {
Please login to merge, or discard this patch.