@@ -60,7 +60,7 @@ discard block |
||
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 |
||
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( |