Completed
Push — master ( 750bbf...39baf9 )
by Anthony
04:07
created
src/Validators/PasswordMixedCaseValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Groundsix\Password\Validators;
5 5
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /** {@inheritdoc} */
12 12
     public function validate(string $password): bool
13 13
     {
14
-        if($password !== mb_strtolower($password) && $password !== mb_strtoupper($password)) {
14
+        if ($password !== mb_strtolower($password) && $password !== mb_strtoupper($password)) {
15 15
             return true;
16 16
         }
17 17
 
Please login to merge, or discard this patch.