JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "AddEnvironmentInformation.php"

Full Path: /var/www/lionsclub/core/vendor/facade/ignition/src/Middleware/AddEnvironmentInformation.php
File size: 523 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\Ignition\Middleware;

use Facade\FlareClient\Report;

class AddEnvironmentInformation
{
    public function handle(Report $report, $next)
    {
        $report->frameworkVersion(app()->version());

        $report->group('env', [
            'laravel_version' => app()->version(),
            'laravel_locale' => app()->getLocale(),
            'laravel_config_cached' => app()->configurationIsCached(),
            'php_version' => phpversion(),
        ]);

        return $next($report);
    }
}