Passed
Push — master ( d65579...d73657 )
by Magnar Ovedal
02:20
created
src/Rule/Dictionary.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             return true;
108 108
         }
109 109
 
110
-        $word = $this->getDictionaryWord((string)$password);
110
+        $word = $this->getDictionaryWord((string) $password);
111 111
 
112 112
         return $word === null;
113 113
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function enforce($password): void
119 119
     {
120
-        $word = $this->getDictionaryWord((string)$password);
120
+        $word = $this->getDictionaryWord((string) $password);
121 121
 
122 122
         if ($word !== null) {
123 123
             throw new RuleException($this, $this->weight, $this->getMessage($word));
Please login to merge, or discard this patch.