Passed
Push — master ( fdb37f...0cf63c )
by Curtis
30:31 queued 24:49
created
app/Traits/ActivationTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     public function initiateEmailActivationApi(User $user)
22 22
     {
23
-        if (! config('settings.activation') || ! $this->validateEmail($user)) {
23
+        if (!config('settings.activation') || !$this->validateEmail($user)) {
24 24
             return true;
25 25
         }
26 26
 
Please login to merge, or discard this patch.
app/Models/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     public function erase(bool $person = false)
163 163
     {
164 164
         if ($person) {
165
-            return DB::transaction(fn () => tap($this)->delete()->person->delete());
165
+            return DB::transaction(fn() => tap($this)->delete()->person->delete());
166 166
         }
167 167
 
168 168
         return $this->delete();
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $user = $this->loggableUser($request);
56 56
 
57
-        if (! $user) {
57
+        if (!$user) {
58 58
             return false;
59 59
         }
60 60
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
         \Session::put('db', $value);
104 104
 
105
-        if (! optional($user)->currentPasswordIs($request->input('password'))) {
105
+        if (!optional($user)->currentPasswordIs($request->input('password'))) {
106 106
             return;
107 107
         }
108 108
 
Please login to merge, or discard this patch.