Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
horizon
/
src
/
Exceptions
:
ForbiddenException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Horizon\Exceptions; use Symfony\Component\HttpKernel\Exception\HttpException; class ForbiddenException extends HttpException { /** * Create a new exception instance. * * @return static */ public static function make() { return new static(403); } }