Merge pull request #10852 from MrPetovan/bug/10844-unfollow-errors
Fix overly strict return value for revokeFollow methods
This commit is contained in:
commit
e51bd33760
2 changed files with 2 additions and 2 deletions
|
@ -269,7 +269,7 @@ class Protocol
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function revokeFollow(array $contact)
|
public static function revokeFollow(array $contact): ?bool
|
||||||
{
|
{
|
||||||
if (empty($contact['network'])) {
|
if (empty($contact['network'])) {
|
||||||
throw new \InvalidArgumentException('Missing network key in contact array');
|
throw new \InvalidArgumentException('Missing network key in contact array');
|
||||||
|
|
|
@ -857,7 +857,7 @@ class Contact
|
||||||
* @throws HTTPException\InternalServerErrorException
|
* @throws HTTPException\InternalServerErrorException
|
||||||
* @throws \ImagickException
|
* @throws \ImagickException
|
||||||
*/
|
*/
|
||||||
public static function revokeFollow(array $contact): bool
|
public static function revokeFollow(array $contact): ?bool
|
||||||
{
|
{
|
||||||
if (empty($contact['network'])) {
|
if (empty($contact['network'])) {
|
||||||
throw new \InvalidArgumentException('Empty network in contact array');
|
throw new \InvalidArgumentException('Empty network in contact array');
|
||||||
|
|
Loading…
Reference in a new issue