From 0a19759e4f7d916e1f5172c010c89936f3c5d12d Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 16 Jul 2022 13:44:35 +0000 Subject: [PATCH] Fix wrong variable type --- src/Model/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5