Passed
Pull Request — master (#134)
by webdevetc
11:01
created
src/Scopes/BlogEtcPublishedScope.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function apply(Builder $builder, Model $model)
21 21
     {
22
-        if (Helpers::hasAdminGateAccess()){
22
+        if (Helpers::hasAdminGateAccess()) {
23 23
             return;
24 24
         }
25 25
 
Please login to merge, or discard this patch.
src/Gates/DefaultAddCommentsGate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Database\Eloquent\Model;
4 4
 
5
-return function (?Model $user) {
5
+return function(?Model $user) {
6 6
     return true;
7 7
 };
Please login to merge, or discard this patch.
src/Gates/DefaultAdminGate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Database\Eloquent\Model;
4 4
 
5
-return function (?Model $user) {
5
+return function(?Model $user) {
6 6
     // Do not copy the internals for this gate, as it provides backwards compatibility.
7 7
     if (!$user) {
8 8
         return false;
Please login to merge, or discard this patch.