Avoid non numeric parameter

This commit is contained in:
Michael 2021-01-29 23:41:42 +00:00
parent 43f0f6bbdc
commit 722083f9ed
2 changed files with 2 additions and 2 deletions

View file

@ -1353,7 +1353,7 @@ class User
*/
public static function remove(int $uid)
{
if (!$uid) {
if (empty($uid)) {
return false;
}