]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Protocol.php
Fix Installer setup
[friendica.git] / src / Core / Protocol.php
index 8583ac243c65bcb4ed44bdbdcc36c9e96f8d5305..796add5558184cc423a402bbcb6cfcdc4cf2d66d 100644 (file)
@@ -213,11 +213,11 @@ class Protocol
         *
         * @param array   $user    User unfriending
         * @param array   $contact Contact unfriended
-        * @return bool|null true if successful, false if not, null if no action was performed
+        * @return bool|null true if successful, false if not, null if no remote action was performed
         * @throws HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function terminateFriendship(array $user, array $contact): bool
+       public static function terminateFriendship(array $user, array $contact): ?bool
        {
                if (empty($contact['network'])) {
                        throw new \InvalidArgumentException('Missing network key in contact array');
@@ -269,7 +269,7 @@ class Protocol
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function revokeFollow(array $contact)
+       public static function revokeFollow(array $contact): ?bool
        {
                if (empty($contact['network'])) {
                        throw new \InvalidArgumentException('Missing network key in contact array');