AuthNone.php (mrbs-1.9.4) | : | AuthNone.php (mrbs-1.10.0) | ||
---|---|---|---|---|
skipping to change at line 15 | skipping to change at line 15 | |||
{ | { | |||
/* | /* | |||
* Checks if the specified username/password pair are valid. | * Checks if the specified username/password pair are valid. | |||
* | * | |||
* For this authentication scheme always validates. | * For this authentication scheme always validates. | |||
* | * | |||
* @param string $user The user name | * @param string $user The user name | |||
* @param string $pass The password | * @param string $pass The password | |||
* @return string $user Always valid | * @return string $user Always valid | |||
*/ | */ | |||
public function authValidateUser($user, $pass) | public function validateUser(?string $user, ?string $pass) | |||
{ | { | |||
return $user; | return $user; | |||
} | } | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |