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

Fix missing imports for exceptions to process with frontend formatter

This commit is contained in:
Alexander Skvortsov
2020-07-28 20:03:06 -04:00
parent 194cf555db
commit 122f566e10

View File

@@ -20,6 +20,10 @@ 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;
use Flarum\User\Exception\PermissionDeniedException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
class HttpServiceProvider extends AbstractServiceProvider
{