Completed
Push — master ( d116ec...9fbd7a )
by Arjay
12:47
created
src/Traits/HasRole.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 Yajra\Acl\Traits;
4 4
 
5
-use Yajra\Acl\Models\Role;
6 5
 use Illuminate\Support\Str;
6
+use Yajra\Acl\Models\Role;
7 7
 
8 8
 trait HasRole
9 9
 {
Please login to merge, or discard this patch.
src/GateRegistrar.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 Yajra\Acl;
4 4
 
5
+use Illuminate\Contracts\Auth\Access\Gate as GateContract;
6
+use Illuminate\Contracts\Cache\Repository;
7
+use Illuminate\Support\Collection;
5 8
 use Illuminate\Support\Str;
6 9
 use Yajra\Acl\Models\Permission;
7
-use Illuminate\Support\Collection;
8
-use Illuminate\Contracts\Cache\Repository;
9
-use Illuminate\Contracts\Auth\Access\Gate as GateContract;
10 10
 
11 11
 class GateRegistrar
12 12
 {
Please login to merge, or discard this patch.
src/AclServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Yajra\Acl;
4 4
 
5
-use Yajra\Acl\Observers\AclModelObserver;
6
-use Illuminate\View\Compilers\BladeCompiler;
7 5
 use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
6
+use Illuminate\View\Compilers\BladeCompiler;
8 7
 
9 8
 class AclServiceProvider extends ServiceProvider
10 9
 {
Please login to merge, or discard this patch.