/
home
/
sjslayjy
/
public_html
/
tabson
/
vendor
/
facade
/
ignition
/
src
/
Middleware
/
Upload File
HOME
<?php namespace Facade\Ignition\Middleware; use Facade\FlareClient\Enums\GroupingTypes; use Facade\FlareClient\Report; class CustomizeGrouping { protected $groupingType; public function __construct($groupingType) { $this->groupingType = $groupingType; } public function handle(Report $report, $next) { $report->groupByTopFrame(); if ($this->groupingType === GroupingTypes::EXCEPTION) { $report->groupByException(); } return $next($report); } }