Passed
Push — master ( 885fd8...d57c21 )
by Magnar Ovedal
04:21
created
src/Rule/UpperCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $this->constraints[] = new Count($min, $max, $weight);
40 40
 
41
-        StableSort::usort($this->constraints, static function (Count $a, Count $b): int {
41
+        StableSort::usort($this->constraints, static function(Count $a, Count $b): int {
42 42
             return $b->getWeight() <=> $a->getWeight();
43 43
         });
44 44
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function test($password, ?int $weight = 1): bool
56 56
     {
57
-        $count = $this->getCount((string)$password);
57
+        $count = $this->getCount((string) $password);
58 58
         $constraint = $this->getViolation($count, $weight);
59 59
 
60 60
         return $constraint === null;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function validate($password): ?ValidationError
70 70
     {
71
-        $count = $this->getCount((string)$password);
71
+        $count = $this->getCount((string) $password);
72 72
         $constraint = $this->getViolation($count);
73 73
 
74 74
         if ($constraint !== null) {
Please login to merge, or discard this patch.
src/WordFormatter/Leetspeak.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     {
59 59
         $decodeMap = [];
60 60
         foreach ($this->decodeMap as $encodedChar => $chars) {
61
-            if ((string)$encodedChar === mb_substr($word, 0, mb_strlen((string)$encodedChar))) {
61
+            if ((string) $encodedChar === mb_substr($word, 0, mb_strlen((string) $encodedChar))) {
62 62
                 $decodeMap[$encodedChar] = $chars;
63 63
             }
64 64
         }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         }
90 90
 
91 91
         foreach ($this->getDecodeMap($word) as $encodedChar => $chars) {
92
-            foreach ($this->formatWord(mb_substr($word, mb_strlen((string)$encodedChar))) as $suffix) {
92
+            foreach ($this->formatWord(mb_substr($word, mb_strlen((string) $encodedChar))) as $suffix) {
93 93
                 foreach ($chars as $char) {
94 94
                     yield $char.$suffix;
95 95
                 }
Please login to merge, or discard this patch.