. * */ namespace Friendica\Module\HTTPException; use Friendica\BaseModule; use Friendica\Network\HTTPException; class MethodNotAllowed extends BaseModule { protected function content(array $request = []): string { throw new HTTPException\MethodNotAllowedException($this->t('Method Not Allowed.')); } }