From: Roland Häder Date: Wed, 21 Sep 2022 22:21:42 +0000 (+0200) Subject: Changed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=80afe13a260d2a765fb7e98c661853a05b95eb06;p=friendica.git Changed: - added missing type-hint --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 720d2638c4..925cc81798 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -2560,7 +2560,7 @@ class Contact * @throws HTTPException\InternalServerErrorException * @throws \ImagickException */ - public static function updateFromProbe(int $id, string $network = '') + public static function updateFromProbe(int $id, string $network = ''): bool { $contact = DBA::selectFirst('contact', ['uid', 'url'], ['id' => $id]); if (!DBA::isResult($contact)) {