diff --git a/src/LaravelDebugbar.php b/src/LaravelDebugbar.php index 0116ba52..75950d07 100644 --- a/src/LaravelDebugbar.php +++ b/src/LaravelDebugbar.php @@ -295,9 +295,6 @@ function ($query, $bindings = null, $time = null, $connectionName = null) use ($ // Laravel 5.2 changed the way some core events worked. We must account for // the first argument being an "event object", where arguments are passed // via object properties, instead of individual arguments. - // In my opinion it is better to type check rather than version check in the - // long term. Lumen doesn't support SemVer standard either, thus breaking - // the version_compare function if ( $query instanceof \Illuminate\Database\Events\QueryExecuted ) { $bindings = $query->bindings; $time = $query->time;