File "AddExceptionInformation.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition/src/Middleware/AddExceptionInformation.php
File size: 490 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\Ignition\Middleware;

use Facade\FlareClient\Report;
use Illuminate\Database\QueryException;

class AddExceptionInformation
{
    public function handle(Report $report, $next)
    {
        $throwable = $report->getThrowable();

        if (! $throwable instanceof QueryException) {
            return $next($report);
        }

        $report->group('exception', [
            'raw_sql' => $throwable->getSql(),
        ]);

        return $next($report);
    }
}