Skip to content

adding blank lines after description blocks #1769

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions config/debugbar.php
Original file line number Diff line number Diff line change
@@ -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,
];