From ded19cd1e3c0fda011d413c9f06cd2c061bd66f5 Mon Sep 17 00:00:00 2001 From: Hicham LEMGHARI Date: Fri, 28 Mar 2025 12:16:24 +0000 Subject: [PATCH] adding blank lines after description blocks --- config/debugbar.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/debugbar.php b/config/debugbar.php index c6f8d772..6989536e 100644 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -37,6 +37,7 @@ | Specify a callback if you want to limit based on IP or authentication. | Leaving it to null will allow localhost only. */ + 'storage' => [ 'enabled' => true, 'open' => env('DEBUGBAR_OPEN_STORAGE'), // bool/callback. @@ -139,6 +140,7 @@ | in the Messages tab. | */ + 'error_handler' => false, /* @@ -150,6 +152,7 @@ | Extension, without the server-side code. It uses Debugbar collectors instead. | */ + 'clockwork' => false, /* @@ -290,6 +293,7 @@ | from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97 | */ + 'route_prefix' => '_debugbar', /* @@ -299,6 +303,7 @@ | | Additional middleware to run on the Debugbar routes */ + 'route_middleware' => [], /* @@ -309,6 +314,7 @@ | By default Debugbar route served from the same domain that request served. | To override default domain, specify it as a non-empty value. */ + 'route_domain' => null, /* @@ -319,6 +325,7 @@ | Switches between light and dark theme. If set to auto it will respect system preferences | Possible values: auto, light, dark */ + 'theme' => env('DEBUGBAR_THEME', 'auto'), /* @@ -329,5 +336,6 @@ | By default, the Debugbar limits the number of frames returned by the 'debug_backtrace()' function. | If you need larger stacktraces, you can increase this number. Setting it to 0 will result in no limit. */ + 'debug_backtrace_limit' => 50, ];