Passed
Push — master ( 658045...68d667 )
by Dedipyaman
01:41
created
src/Validator/UsernameValidator.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,9 @@
 block discarded – undo
56 56
             new MaximumLength($this->maxLength));
57 57
 
58 58
         $result = $rule->validate($username);
59
-        if ($result->isValid())
60
-            return new Success();
59
+        if ($result->isValid()) {
60
+                    return new Success();
61
+        }
61 62
         /**
62 63
          * @var Failure $result
63 64
          */
Please login to merge, or discard this patch.