Completed
Pull Request — develop (#2)
by Jimmy
03:52
created
src/Concerns/HasForms.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         return is_null($this->attributes['formio_password'] ?? null)
26 26
             ? null
27 27
             : $this->resolveEncrypter()
28
-                   ->decrypt($this->attributes['formio_password']);
28
+                    ->decrypt($this->attributes['formio_password']);
29 29
     }
30 30
 
31 31
     /**
@@ -90,6 +90,6 @@  discard block
 block discarded – undo
90 90
         $this->attributes['formio_password'] = is_null($formio_password)
91 91
             ? null
92 92
             : $this->resolveEncrypter()
93
-                   ->encrypt($formio_password);
93
+                    ->encrypt($formio_password);
94 94
     }
95 95
 }
Please login to merge, or discard this patch.