Passed
Push — master ( 0fe0e0...2b8d14 )
by Innocent
03:27
created
src/Models/Ministry.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     use CreatableTrait;
26 26
 
27 27
     protected $table = 'fg_ministries';
28
-    protected $guarded = ['id'];
28
+    protected $guarded = [ 'id' ];
29 29
     public $incrementing = false;
30 30
     protected $hidden = [
31 31
         'password',
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     public function getJWTCustomClaims()
42 42
     {
43
-        return [];
43
+        return [ ];
44 44
     }
45 45
 
46 46
     /**
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
             return $phones;
110 110
         } else {
111
-            return [$this->phone];
111
+            return [ $this->phone ];
112 112
         }
113 113
     }
114 114
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
             return $emails;
122 122
         } else {
123
-            return [$this->email];
123
+            return [ $this->email ];
124 124
         }
125 125
     }
126 126
 
Please login to merge, or discard this patch.