Fix overly strict return value for revokeFollow methods

This commit is contained in:
Hypolite Petovan 2021-10-08 22:36:31 -04:00
parent 8f518af011
commit 880c2148c2
2 changed files with 2 additions and 2 deletions

View File

@ -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');

View File

@ -857,7 +857,7 @@ class Contact
* @throws HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
public static function revokeFollow(array $contact): bool
public static function revokeFollow(array $contact): ?bool
{
if (empty($contact['network'])) {
throw new \InvalidArgumentException('Empty network in contact array');