Files
trfgo/vendor/spatie/flare-client-php/src/FlareMiddleware/AddNotifierName.php
T
2025-03-28 08:52:46 +01:00

18 lines
337 B
PHP

<?php
namespace Spatie\FlareClient\FlareMiddleware;
use Spatie\FlareClient\Report;
class AddNotifierName implements FlareMiddleware
{
public const NOTIFIER_NAME = 'Flare Client';
public function handle(Report $report, $next)
{
$report->notifierName(static::NOTIFIER_NAME);
return $next($report);
}
}