Skip to content

Commit 97e07ad

Browse files
committed
fix
1 parent 511df9f commit 97e07ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/Icinga/Authentication/PasswordValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ public function __construct(PasswordPolicyHook $passwordPolicyObject)
2929
* Checks if password matches with password policy
3030
* throws a message if not
3131
*
32-
* @param string $value The password to validate
32+
* @param mixed $value The password to validate
3333
*
3434
* @return bool
3535
*/
36-
public function isValid(string $value): bool
36+
public function isValid($value): bool
3737
{
3838
$message = $this->passwordPolicyObject->validatePassword($value);
3939

0 commit comments

Comments
 (0)