2019-10-11 11:55:02 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2021-03-29 02:40:20 -04:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-10-11 11:55:02 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\HTTPException;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-01-18 16:07:07 -05:00
|
|
|
use Friendica\DI;
|
2019-10-11 11:55:02 -04:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
|
|
|
class MethodNotAllowed extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-10-11 11:55:02 -04:00
|
|
|
{
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\MethodNotAllowedException(DI::l10n()->t('Method Not Allowed.'));
|
2019-10-11 11:55:02 -04:00
|
|
|
}
|
|
|
|
}
|