Skip to content

Commit 2648948

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Fix CS
2 parents 4fb8af5 + 7ff6706 commit 2648948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Hasher/PasswordHasherFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function getPasswordHasher(string|PasswordAuthenticatedUserInterface|Pass
4040
{
4141
$hasherKey = null;
4242

43-
if (($user instanceof PasswordHasherAwareInterface && null !== $hasherName = $user->getPasswordHasherName())) {
43+
if ($user instanceof PasswordHasherAwareInterface && null !== $hasherName = $user->getPasswordHasherName()) {
4444
if (!\array_key_exists($hasherName, $this->passwordHashers)) {
4545
throw new \RuntimeException(sprintf('The password hasher "%s" was not configured.', $hasherName));
4646
}

0 commit comments

Comments
 (0)