Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../vendor/markbaker/.././egulias/./../phpoption/../unicodeveloper/../graham-campbell/../fruitcake/../symfony/string/../polyfill-uuid/../console/../routing/../../ezyang/../spatie/flare-client-php/./src/FlareMiddleware
الملفات الموجودة في هذا الـ Path:
.
..
AddDocumentationLinks.php
AddEnvironmentInformation.php
AddGitInformation.php
AddGlows.php
AddNotifierName.php
AddSolutions.php
CensorRequestBodyFields.php
CensorRequestHeaders.php
FlareMiddleware.php
RemoveRequestIp.php

مشاهدة ملف: AddEnvironmentInformation.php

<?php

namespace Spatie\FlareClient\FlareMiddleware;

use Closure;
use Spatie\FlareClient\Report;

class AddEnvironmentInformation implements FlareMiddleware
{
    public function handle(Report $report, Closure $next)
    {
        $report->group('env', [
            'php_version' => phpversion(),
        ]);

        return $next($report);
    }
}