From: Michael Date: Sat, 16 Jul 2022 13:44:35 +0000 (+0000) Subject: Fix wrong variable type X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0a19759e4f7d916e1f5172c010c89936f3c5d12d;p=friendica.git Fix wrong variable type --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 5d1e92f4bc..5997b1569b 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -359,7 +359,7 @@ class Contact * @throws HTTPException\InternalServerErrorException * @throws \ImagickException */ - public static function isFollowerByURL(string $url, uid $uid): bool + public static function isFollowerByURL(string $url, int $uid): bool { $cid = self::getIdForURL($url, $uid);