. * */ namespace Friendica\Module\Api\Mastodon; use Friendica\Core\System; use Friendica\Module\BaseApi; /** * @see https://docs.joinmastodon.org/methods/proofs/ */ class Proofs extends BaseApi { /** * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ protected function rawContent(array $request = []) { $this->jsonError(404, ['error' => 'Record not found']); } }