Rename ApipResponse->exit* methods to better show their meaning

This commit is contained in:
Hypolite Petovan 2023-09-22 10:14:46 -04:00
parent 960171c4e0
commit 642baa1f2a
68 changed files with 88 additions and 88 deletions

View file

@ -87,6 +87,6 @@ class Destroy extends ContactEndpoint
throw new HTTPException\InternalServerErrorException('Unable to unfollow this contact, please contact your administrator');
}
$this->response->exit('friendships', ['user' => $user], $this->parameters['extension'] ?? null);
$this->response->addFormattedContent('friendships', ['user' => $user], $this->parameters['extension'] ?? null);
}
}