composer: update dependencies

This commit is contained in:
Matthew Penner 2022-12-14 18:41:39 -07:00
parent a24c594cbd
commit 160c3ddeff
No known key found for this signature in database
7 changed files with 176 additions and 304 deletions

View file

@ -9,7 +9,6 @@ use Illuminate\Http\Response;
use Illuminate\Http\JsonResponse;
use Illuminate\Container\Container;
use Illuminate\Http\RedirectResponse;
use Prologue\Alerts\AlertsMessageBag;
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
class DisplayException extends PterodactylException implements HttpExceptionInterface
@ -53,8 +52,6 @@ class DisplayException extends PterodactylException implements HttpExceptionInte
return response()->json(Handler::toArray($this), $this->getStatusCode(), $this->getHeaders());
}
app(AlertsMessageBag::class)->danger($this->getMessage())->flash();
return redirect()->back()->withInput();
}