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;
}

View File

@ -53,7 +53,7 @@ use Friendica\Protocol\Salmon;
class Notifier
{
public static function execute($cmd, $target_id)
public static function execute(string $cmd, int $target_id)
{
$a = DI::app();