Passed
Push — master ( 6da38c...408d25 )
by Andrey
17:24 queued 14:36
created
src/Traits/Searchable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             return $value;
52 52
         }
53 53
 
54
-        return $this->searchOr($model, $value, function () use ($exception, $value) {
54
+        return $this->searchOr($model, $value, function() use ($exception, $value) {
55 55
             throw new $exception($value);
56 56
         });
57 57
     }
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -46,57 +46,57 @@
 block discarded – undo
46 46
 
47 47
     protected function blade()
48 48
     {
49
-        if (! Config::useBlade()) {
49
+        if ( ! Config::useBlade()) {
50 50
             return;
51 51
         }
52 52
 
53 53
         /* Role */
54
-        Blade::directive('role', function ($role) {
54
+        Blade::directive('role', function($role) {
55 55
             return "<?php if(\auth()->check() && \auth()->user()->hasRole($role)) { ?>";
56 56
         });
57 57
 
58
-        Blade::directive('endrole', function () {
58
+        Blade::directive('endrole', function() {
59 59
             return '<?php } ?>';
60 60
         });
61 61
 
62 62
         /* Roles */
63
-        Blade::directive('role', function ($roles) {
63
+        Blade::directive('role', function($roles) {
64 64
             return "<?php if(\auth()->check() && \auth()->user()->hasRoles($roles)) { ?>";
65 65
         });
66 66
 
67
-        Blade::directive('endroles', function () {
67
+        Blade::directive('endroles', function() {
68 68
             return '<?php } ?>';
69 69
         });
70 70
 
71 71
         /* Permission */
72
-        Blade::directive('permission', function ($permission) {
72
+        Blade::directive('permission', function($permission) {
73 73
             return "<?php if(\auth()->check() && \auth()->user()->hasPermission($permission)) ?>";
74 74
         });
75 75
 
76
-        Blade::directive('endpermission', function () {
76
+        Blade::directive('endpermission', function() {
77 77
             return '<?php } ?>';
78 78
         });
79 79
 
80 80
         /* Permissions */
81
-        Blade::directive('permissions', function ($permissions) {
81
+        Blade::directive('permissions', function($permissions) {
82 82
             return "<?php if(\auth()->check() && \auth()->user()->hasPermissions($permissions)) ?>";
83 83
         });
84 84
 
85
-        Blade::directive('endpermissions', function () {
85
+        Blade::directive('endpermissions', function() {
86 86
             return '<?php } ?>';
87 87
         });
88 88
     }
89 89
 
90 90
     protected function can()
91 91
     {
92
-        if (! Config::useCanDirective()) {
92
+        if ( ! Config::useCanDirective()) {
93 93
             return;
94 94
         }
95 95
 
96 96
         Permission::query()
97 97
             ->get(['name'])
98
-            ->each(function (Permission $permission) {
99
-                Gate::define($permission->name, function (Authenticatable $user) use ($permission) {
98
+            ->each(function(Permission $permission) {
99
+                Gate::define($permission->name, function(Authenticatable $user) use ($permission) {
100 100
                     return $user->hasPermission($permission);
101 101
                 });
102 102
             });
Please login to merge, or discard this patch.
migrations/2020_06_04_000001_modify_roles_table_add_is_root_column.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,14 +6,14 @@
 block discarded – undo
6 6
 {
7 7
     public function up()
8 8
     {
9
-        $this->table($this->roles, function (Blueprint $table) {
9
+        $this->table($this->roles, function(Blueprint $table) {
10 10
             $table->boolean('is_root')->default(false)->after('name');
11 11
         });
12 12
     }
13 13
 
14 14
     public function down()
15 15
     {
16
-        $this->table($this->roles, function (Blueprint $table) {
16
+        $this->table($this->roles, function(Blueprint $table) {
17 17
             $table->dropColumn('is_root');
18 18
         });
19 19
     }
Please login to merge, or discard this patch.
2020_06_04_000002_modify_roles_and_permissions_tables_remove_timestamps.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@
 block discarded – undo
18 18
 
19 19
     protected function dropTimestamps(string $table)
20 20
     {
21
-        $this->table($table, function (Blueprint $table) {
21
+        $this->table($table, function(Blueprint $table) {
22 22
             $table->dropTimestamps();
23 23
         });
24 24
     }
25 25
 
26 26
     protected function createTimestamps(string $table)
27 27
     {
28
-        $this->table($table, function (Blueprint $table) {
28
+        $this->table($table, function(Blueprint $table) {
29 29
             $table->timestamps();
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
2020_06_04_000003_modify_roles_and_permissions_table_optimize_indexes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     protected function optimizeIndexes(string $table, string $first_key, string $second_key)
20 20
     {
21
-        $this->table($table, function (Blueprint $table) use ($first_key, $second_key) {
21
+        $this->table($table, function(Blueprint $table) use ($first_key, $second_key) {
22 22
             $table->dropPrimary([$first_key, $second_key]);
23 23
 
24 24
             $table->index($first_key);
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     protected function revertIndexes(string $table, string $first_key, string $second_key)
29 29
     {
30
-        $this->table($table, function (Blueprint $table) use ($first_key, $second_key) {
30
+        $this->table($table, function(Blueprint $table) use ($first_key, $second_key) {
31 31
             $table->dropIndex($first_key);
32 32
 
33 33
             $table->primary([$first_key, $second_key]);
Please login to merge, or discard this patch.
migrations/2019_04_22_115951_create_roles_and_permissions_tables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     protected function createTable(string $table)
26 26
     {
27
-        $this->create($table, function (Blueprint $table) {
27
+        $this->create($table, function(Blueprint $table) {
28 28
             $table->bigIncrements('id');
29 29
             $table->string('name')->unique();
30 30
             $table->timestamps();
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     protected function createPivot(string $table, string $first_table, string $second_table, string $first_key, string $second_key)
35 35
     {
36
-        $this->create($table, function (Blueprint $table) use ($first_table, $second_table, $first_key, $second_key) {
36
+        $this->create($table, function(Blueprint $table) use ($first_table, $second_table, $first_key, $second_key) {
37 37
             $table->unsignedBigInteger($first_key);
38 38
             $table->unsignedBigInteger($second_key);
39 39
 
Please login to merge, or discard this patch.
database/migrations/2020_06_05_000000_create_user_permission_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     protected function createPivot(string $table, string $first_table, string $second_table, string $first_key, string $second_key)
25 25
     {
26
-        $this->create($table, function (Blueprint $table) use ($first_table, $second_table, $first_key, $second_key) {
26
+        $this->create($table, function(Blueprint $table) use ($first_table, $second_table, $first_key, $second_key) {
27 27
             $table->unsignedBigInteger($first_key)->index();
28 28
             $table->unsignedBigInteger($second_key);
29 29
 
Please login to merge, or discard this patch.
src/Support/Database/Search.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     protected function map($values): array
45 45
     {
46
-        return array_map(function ($value) {
46
+        return array_map(function($value) {
47 47
             return $this->getId($value);
48 48
         }, $this->toArray($values));
49 49
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     {
53 53
         if ($this->isArrayable($values)) {
54 54
             $values = $values->toArray();
55
-        } elseif (! $this->isArray($values)) {
55
+        } elseif ( ! $this->isArray($values)) {
56 56
             $values = Arr::wrap($values);
57 57
         }
58 58
 
Please login to merge, or discard this patch.
src/Traits/HasRoles.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function hasRootRole(): bool
32 32
     {
33
-        return $this->cache(__FUNCTION__, function () {
33
+        return $this->cache(__FUNCTION__, function() {
34 34
             return $this->roles()
35 35
                 ->where('is_root', true)
36 36
                 ->exists();
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function hasRole(...$roles): bool
107 107
     {
108
-        return $this->cache(__FUNCTION__, function () use ($roles) {
108
+        return $this->cache(__FUNCTION__, function() use ($roles) {
109 109
             return Search::by($this->roles(), $roles)->exists();
110 110
         }, $roles);
111 111
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function hasRoles(...$roles): bool
119 119
     {
120
-        return $this->cache(__FUNCTION__, function () use ($roles) {
120
+        return $this->cache(__FUNCTION__, function() use ($roles) {
121 121
             $count = Search::by($this->roles(), $roles)->count();
122 122
 
123 123
             return $count === count($roles);
@@ -200,11 +200,11 @@  discard block
 block discarded – undo
200 200
      */
201 201
     public function hasPermission($permission): bool
202 202
     {
203
-        return $this->cache(__FUNCTION__, function () use ($permission) {
203
+        return $this->cache(__FUNCTION__, function() use ($permission) {
204 204
             $first = Search::by($this->permissions(), $permission)->exists();
205 205
 
206 206
             $second = $this->roles()
207
-                ->whereHas('permissions', function (Builder $builder) use ($permission) {
207
+                ->whereHas('permissions', function(Builder $builder) use ($permission) {
208 208
                     return Search::by($builder, $permission);
209 209
                 })->exists();
210 210
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      */
220 220
     public function hasPermissions(...$permissions): bool
221 221
     {
222
-        return $this->cache(__FUNCTION__, function () use ($permissions) {
222
+        return $this->cache(__FUNCTION__, function() use ($permissions) {
223 223
             $count = Search::by($this->permissions(), $permissions)->count();
224 224
 
225 225
             return $count === count($permissions);
Please login to merge, or discard this patch.