Passed
Push — master ( 1ed7cb...1a6df3 )
by Magnar Ovedal
03:51
created
src/Rule/DictionaryRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             return true;
61 61
         }
62 62
 
63
-        $word = $this->getDictionaryWord((string)$password);
63
+        $word = $this->getDictionaryWord((string) $password);
64 64
 
65 65
         return $word === null;
66 66
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function validate($password, TranslatorInterface $translator): ?ValidationError
72 72
     {
73
-        $word = $this->getDictionaryWord((string)$password);
73
+        $word = $this->getDictionaryWord((string) $password);
74 74
 
75 75
         if ($word !== null) {
76 76
             return new ValidationError(
Please login to merge, or discard this patch.