Added some type-hints

This commit is contained in:
Roland Häder 2022-06-23 10:30:44 +02:00
parent 69a68be800
commit 3f74a59f73
Signed by: roland
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 3 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class ActivityPub
*
* @return bool is it AP?
*/
public static function isRequest()
public static function isRequest(): bool
{
$isrequest = stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/json') ||
@ -202,6 +202,7 @@ class ActivityPub
*
* @param string $url
* @param integer $uid User ID
* @return void
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function fetchOutbox(string $url, int $uid)
@ -268,7 +269,7 @@ class ActivityPub
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
public static function isSupportedByContactUrl(string $url, $update = null)
public static function isSupportedByContactUrl(string $url, $update = null): bool
{
return !empty(APContact::getByURL($url, $update));
}