Passed
Pull Request — master (#1323)
by Curtis
05:58
created
app/Http/Requests/enso/core/PasswordValidator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,21 +28,21 @@  discard block
 block discarded – undo
28 28
                 ->add('password', __('You cannot use the existing password'));
29 29
         }
30 30
 
31
-        if (! $this->hasMinUppercase()) {
31
+        if (!$this->hasMinUppercase()) {
32 32
             $this->validator->errors()
33 33
                 ->add('password', __('Minimum upper case letters count is :number', [
34 34
                     'number' => config('enso.auth.password.minUpperCase'),
35 35
                 ]));
36 36
         }
37 37
 
38
-        if (! $this->hasMinNumeric()) {
38
+        if (!$this->hasMinNumeric()) {
39 39
             $this->validator->errors()
40 40
                 ->add('password', __('Minimum numeric characters count is :number', [
41 41
                     'number' => config('enso.auth.password.minNumeric'),
42 42
                 ]));
43 43
         }
44 44
 
45
-        if (! $this->hasMinSpecial()) {
45
+        if (!$this->hasMinSpecial()) {
46 46
             $this->validator->errors()
47 47
                 ->add('password', __('Minimum special characters count is :number', [
48 48
                     'number' => config('enso.auth.password.minSpecial'),
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     private function hasMinUppercase()
54 54
     {
55
-        if (! config('enso.auth.password.minUpperCase')) {
55
+        if (!config('enso.auth.password.minUpperCase')) {
56 56
             return true;
57 57
         }
58 58
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     private function hasMinNumeric()
65 65
     {
66
-        if (! config('enso.auth.password.minNumeric')) {
66
+        if (!config('enso.auth.password.minNumeric')) {
67 67
             return true;
68 68
         }
69 69
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
     private function hasMinSpecial()
76 76
     {
77
-        if (! config('enso.auth.password.minSpecial')) {
77
+        if (!config('enso.auth.password.minSpecial')) {
78 78
             return true;
79 79
         }
80 80
 
Please login to merge, or discard this patch.
app/Http/Requests/enso/core/ValidateUserRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function withValidator($validator)
29 29
     {
30 30
         if ($this->filled('password')) {
31
-            $validator->after(fn ($validator) => (new PasswordValidator(
31
+            $validator->after(fn($validator) => (new PasswordValidator(
32 32
                 $this, $validator, $this->route('user')
33 33
             ))->handle());
34 34
         }
Please login to merge, or discard this patch.