PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
facade
/
ignition
/
src
/
Middleware
<?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); } }
[-] AddDumps.php
[edit]
[-] SetNotifierName.php
[edit]
[+]
..
[-] AddJobInformation.php
[edit]
[-] AddExceptionInformation.php
[edit]
[-] AddLogs.php
[edit]
[-] AddQueries.php
[edit]
[-] AddSolutions.php
[edit]
[-] AddGitInformation.php
[edit]
[-] AddEnvironmentInformation.php
[edit]
[-] .htaccess
[edit]