Passed
Push — master ( 827f7d...70d366 )
by Robert
03:13
created
src/Identifier/PasswordIdentifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
         $hasher = $this->passwordHasher;
157 157
         $hashedPassword = $data[$passwordField];
158
-        if (!$hasher->check((string)$password, $hashedPassword)) {
158
+        if (!$hasher->check((string) $password, $hashedPassword)) {
159 159
             return false;
160 160
         }
161 161
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         $fields = $this->credentialFields[self::CREDENTIAL_USERNAME];
186 186
 
187 187
         $conditions = [];
188
-        foreach ((array)$fields as $field) {
188
+        foreach ((array) $fields as $field) {
189 189
             $conditions[$field] = $identifier;
190 190
         }
191 191
 
Please login to merge, or discard this patch.