2019-10-11 15:55:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\HTTPException;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
class MethodNotAllowed extends BaseModule
|
|
|
|
{
|
2019-11-05 20:22:54 +00:00
|
|
|
public static function content($parameters)
|
2019-10-11 15:55:02 +00:00
|
|
|
{
|
|
|
|
throw new HTTPException\MethodNotAllowedException(L10n::t('Method Not Allowed.'));
|
|
|
|
}
|
|
|
|
}
|