We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d21e8de commit 5a3374fCopy full SHA for 5a3374f
src/LaravelDebugbar.php
@@ -206,6 +206,8 @@ function () use ($startTime) {
206
);
207
}
208
209
+ $this->startMeasure('application', 'Application', 'time');
210
+
211
if ($events) {
212
$events->listen(\Illuminate\Routing\Events\Routing::class, function() {
213
$this->startMeasure('Routing');
@@ -220,8 +222,6 @@ function () use ($startTime) {
220
222
$events->listen(\Illuminate\Routing\Events\ResponsePrepared::class, function() {
221
223
$this->stopMeasure('Preparing Response');
224
});
- } else {
- $this->startMeasure('application', 'Application', 'time');
225
226
227
0 commit comments