1
0
mirror of https://github.com/flarum/core.git synced 2025-08-14 04:14:06 +02:00

Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
luceos
2020-07-29 01:38:32 +00:00
committed by Alexander Skvortsov
parent 7035625899
commit 5eff7b010d
3 changed files with 6 additions and 9 deletions

View File

@@ -10,9 +10,9 @@
namespace Flarum\Foundation\ErrorHandling;
use Flarum\Frontend\Controller;
use Flarum\Http\Content\PermissionDenied;
use Flarum\Http\Content\NotAuthenticated;
use Flarum\Http\Content\NotFound;
use Flarum\Http\Content\PermissionDenied;
use Flarum\Settings\SettingsRepositoryInterface;
use Illuminate\Contracts\Container\Container;
use Psr\Http\Message\ResponseInterface as Response;
@@ -56,15 +56,13 @@ class FrontendFormatter implements HttpFormatter
public function format(HandledError $error, Request $request): Response
{
$frontend = $this->container->make("flarum.frontend.forum");
$frontend = $this->container->make('flarum.frontend.forum');
if ($error->getStatusCode() === 401) {
$frontend->content(new NotAuthenticated);
}
elseif ($error->getStatusCode() === 403) {
} elseif ($error->getStatusCode() === 403) {
$frontend->content(new PermissionDenied);
}
elseif ($error->getStatusCode() === 404) {
} elseif ($error->getStatusCode() === 404) {
$frontend->content(new NotFound);
}

View File

@@ -16,9 +16,9 @@ use Flarum\Settings\SettingsRepositoryInterface;
use Flarum\User\User;
use Flarum\User\UsernameSlugDriver;
use Illuminate\Support\Arr;
use Flarum\Foundation\ErrorHandling\FrontendFormatter;
use Flarum\Foundation\ErrorHandling\Registry;
use Flarum\Foundation\ErrorHandling\Reporter;
use Flarum\Foundation\ErrorHandling\FrontendFormatter;
use Flarum\Foundation\ErrorHandling\WhoopsFormatter;
use Flarum\Http\Exception\RouteNotFoundException;
use Flarum\User\Exception\NotAuthenticatedException;

View File

@@ -76,10 +76,9 @@ class HandleErrors implements Middleware
}
}
if (!$handled) {
if (! $handled) {
throw $e;
}
}
$error = $this->registry->handle($e);