PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
facade
/
ignition
/
src
/
Middleware
<?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); } }
[-] AddDumps.php
[edit]
[-] SetNotifierName.php
[edit]
[+]
..
[-] AddLogs.php
[edit]
[-] AddQueries.php
[edit]
[-] AddSolutions.php
[edit]
[-] AddGitInformation.php
[edit]
[-] AddEnvironmentInformation.php
[edit]