Path : /var/www/html/master288-bk2/vendor/facade/ignition/src/Middleware/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/master288-bk2/vendor/facade/ignition/src/Middleware/AddExceptionInformation.php |
<?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); } }