Initial pass at Laravel 7 support #673

This commit is contained in:
Nabeel Shahzad
2020-05-15 18:20:16 -04:00
parent 885e1d599e
commit 6078163d75
27 changed files with 1659 additions and 1281 deletions

View File

@@ -3,13 +3,13 @@
namespace App\Exceptions\Converters;
use App\Exceptions\AbstractHttpException;
use Exception;
use Throwable;
class GenericExceptionAbstract extends AbstractHttpException
{
private $exception;
public function __construct(Exception $exception)
public function __construct(Throwable $exception)
{
$this->exception = $exception;
parent::__construct(