mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
Fix code style
This commit is contained in:
parent
18369854b7
commit
23ce65c5d0
1 changed files with 13 additions and 13 deletions
|
@ -287,7 +287,7 @@ class Router
|
||||||
if ($routeInfo[0] === Dispatcher::FOUND) {
|
if ($routeInfo[0] === Dispatcher::FOUND) {
|
||||||
$this->moduleClass = $routeInfo[1];
|
$this->moduleClass = $routeInfo[1];
|
||||||
$this->parameters[] = $routeInfo[2];
|
$this->parameters[] = $routeInfo[2];
|
||||||
} else if ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
|
} elseif ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
|
||||||
throw new HTTPException\MethodNotAllowedException($this->l10n->t('Method not allowed for this module. Allowed method(s): %s', implode(', ', $routeInfo[1])));
|
throw new HTTPException\MethodNotAllowedException($this->l10n->t('Method not allowed for this module. Allowed method(s): %s', implode(', ', $routeInfo[1])));
|
||||||
} else {
|
} else {
|
||||||
throw new HTTPException\NotFoundException($this->l10n->t('Page not found.'));
|
throw new HTTPException\NotFoundException($this->l10n->t('Page not found.'));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue