X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FProtocol.php;h=759a6e70e66160c78f45258e09c90d8bec3af857;hb=a2c6240da02de21dc974b1fbe65a943f2abb37fb;hp=00552bf787f3fa2b7a6c594974c394570332c1de;hpb=8dbab8f8ce13ef5c6130bee8c0e07af58a773136;p=friendica.git diff --git a/src/Core/Protocol.php b/src/Core/Protocol.php index 00552bf787..759a6e70e6 100644 --- a/src/Core/Protocol.php +++ b/src/Core/Protocol.php @@ -23,6 +23,8 @@ class Protocol const NATIVE_SUPPORT = [self::DFRN, self::DIASPORA, self::OSTATUS, self::FEED, self::MAIL, self::ACTIVITYPUB]; + const FEDERATED = [self::DFRN, self::DIASPORA, self::OSTATUS, self::ACTIVITYPUB]; + // Supported through a connector const DIASPORA2 = 'dspc'; // Diaspora connector const LINKEDIN = 'lnkd'; // LinkedIn @@ -50,7 +52,7 @@ class Protocol * * @param string $profile_url * @return string - * @throws Exception + * @throws \Exception */ public static function getAddrFromProfileUrl($profile_url) { @@ -69,8 +71,9 @@ class Protocol * Guesses the network from a profile URL * * @param string $profile_url - * @param array $matches preg_match return array: [0] => Full match [1] => hostname [2] => username - * @return type + * @param array $matches preg_match return array: [0] => Full match [1] => hostname [2] => username + * @return string + * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ public static function matchByProfileUrl($profile_url, &$matches = []) { @@ -131,6 +134,7 @@ class Protocol * @param string $profile_url * @param string $display_name * @return string + * @throws \Exception */ public static function formatMention($profile_url, $display_name) {