Completed
Push — master ( 14152b...08794d )
by wen
10:50
created
src/Http/Controllers/Auth/LoginController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Sco\Admin\Http\Controllers\Auth;
4 4
 
5 5
 use Auth;
6
+use Illuminate\Foundation\Auth\AuthenticatesUsers;
6 7
 use Illuminate\Foundation\Validation\ValidatesRequests;
7 8
 use Illuminate\Http\Request;
8 9
 use Illuminate\Routing\Controller;
9
-use Illuminate\Foundation\Auth\AuthenticatesUsers;
10 10
 
11 11
 class LoginController extends Controller
12 12
 {
Please login to merge, or discard this patch.
src/Console/InstallCommand.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,9 +3,6 @@
 block discarded – undo
3 3
 namespace Sco\Admin\Console;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Symfony\Component\Process\Exception\ProcessFailedException;
7
-use Symfony\Component\Process\ExecutableFinder;
8
-use Symfony\Component\Process\Process;
9 6
 
10 7
 class InstallCommand extends Command
11 8
 {
Please login to merge, or discard this patch.
src/Http/Controllers/System/MenuController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Http\Request;
6 6
 use Illuminate\Routing\Controller;
7 7
 use Sco\Admin\Http\Requests\StorePermissionRequest;
8
-use Sco\Admin\Http\Requests\PermissionRequest;
9 8
 use Sco\Admin\Http\Requests\UpdatePermissionRequest;
10 9
 use Sco\Admin\Models\Permission;
11 10
 
Please login to merge, or discard this patch.
src/Http/Middleware/RouteAuthorize.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
 use Closure;
6 6
 use Illuminate\Auth\Access\AuthorizationException;
7
-use Route;
8 7
 use Illuminate\Contracts\Auth\Factory as Auth;
8
+use Route;
9 9
 
10 10
 class RouteAuthorize
11 11
 {
Please login to merge, or discard this patch.
src/Component/Component.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Sco\Admin\Component;
4 4
 
5 5
 use Illuminate\Foundation\Application;
6
-use Illuminate\Http\Request;
7 6
 use Sco\Admin\Component\Concerns\HasEvents;
8 7
 use Sco\Admin\Component\Concerns\HasNavigation;
9 8
 use Sco\Admin\Contracts\ComponentInterface;
Please login to merge, or discard this patch.
src/Http/Controllers/AdminController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Illuminate\Http\Request;
7 7
 use Illuminate\Routing\Controller;
8 8
 use Sco\Admin\Contracts\ComponentInterface;
9
-use Sco\Admin\Contracts\ModelFactoryInterface;
10 9
 
11 10
 class AdminController extends Controller
12 11
 {
Please login to merge, or discard this patch.
src/Providers/NavigationServiceProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Sco\Admin\Providers;
4 4
 
5 5
 use Illuminate\Support\ServiceProvider;
6
-use KodiComponents\Navigation\Contracts\NavigationInterface;
7
-use KodiComponents\Navigation\Navigation;
8 6
 use KodiComponents\Navigation\Contracts\BadgeInterface;
7
+use KodiComponents\Navigation\Contracts\NavigationInterface;
9 8
 use KodiComponents\Navigation\Contracts\PageInterface;
9
+use KodiComponents\Navigation\Navigation;
10 10
 use Sco\Admin\Navigation\Badge;
11 11
 use Sco\Admin\Navigation\Page;
12 12
 
Please login to merge, or discard this patch.
src/Providers/AdminServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 use Sco\Admin\Contracts\RepositoryInterface;
11 11
 use Sco\Admin\Contracts\View\ColumnFactoryInterface;
12 12
 use Sco\Admin\Contracts\View\ViewFactoryInterface;
13
-use Sco\Admin\Form\ElementFactory;
14 13
 use Sco\Admin\Exceptions\Handler;
14
+use Sco\Admin\Form\ElementFactory;
15 15
 use Sco\Admin\Form\FormFactory;
16 16
 use Sco\Admin\Repositories\Repository;
17 17
 use Sco\Admin\View\ColumnFactory;
Please login to merge, or discard this patch.