Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/iyzico/../nikic/../dflydev/../ramsey/../maennchen/../theseer/../monolog/../hamcrest/../psr/../spatie/flare-client-php/.././flare-client-php/./src/Http/../FlareMiddleware
الملفات الموجودة في هذا الـ Path:
.
..
AddDocumentationLinks.php
AddEnvironmentInformation.php
AddGitInformation.php
AddGlows.php
AddNotifierName.php
AddSolutions.php
CensorRequestBodyFields.php
CensorRequestHeaders.php
FlareMiddleware.php
RemoveRequestIp.php

مشاهدة ملف: AddNotifierName.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);
    }
}