| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function handle(Report $report, $next) |
||
| 10 | { |
||
| 11 | $report->frameworkVersion(app()->version()); |
||
| 12 | |||
| 13 | $report->group('env', [ |
||
| 14 | 'laravel_version' => app()->version(), |
||
| 15 | 'laravel_locale' => app()->getLocale(), |
||
| 16 | 'laravel_config_cached' => app()->configurationIsCached(), |
||
| 17 | 'php_version' => phpversion(), |
||
| 18 | ]); |
||
| 19 | |||
| 20 | return $next($report); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |