You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
297 B

4 years ago
  1. <?php
  2. namespace Facade\Ignition\Middleware;
  3. use Facade\FlareClient\Report;
  4. class SetNotifierName
  5. {
  6. const NOTIFIER_NAME = 'Laravel Client';
  7. public function handle(Report $report, $next)
  8. {
  9. $report->notifierName(static::NOTIFIER_NAME);
  10. return $next($report);
  11. }
  12. }