Passed
Push — master ( 9f3d75...5160e5 )
by Koen
10:14
created
app/Http/Requests/Api/Password/ResetRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
     public function rules(): array
12 12
     {
13 13
         return [
14
-            'token'    => ['required', 'string'],
15
-            'email'    => ['required', 'string', 'email:rfc,dns',],
16
-            'password' => ['required', 'string', 'min:10', 'confirmed'],
14
+            'token'    => [ 'required', 'string' ],
15
+            'email'    => [ 'required', 'string', 'email:rfc,dns', ],
16
+            'password' => [ 'required', 'string', 'min:10', 'confirmed' ],
17 17
         ];
18 18
     }
19 19
 }
Please login to merge, or discard this patch.