Skip to content

Commit

Permalink
Fix Debugbar spelling inconsistencies (#1626)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit authored Dec 15, 2024
1 parent 6a1304c commit b7bce85
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions config/debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
| Storage settings
|--------------------------------------------------------------------------
|
| DebugBar stores data for session/ajax requests.
| Debugbar stores data for session/ajax requests.
| You can disable this, so the debugbar stores data in headers/session,
| but this can cause problems with large data collectors.
| By default, file storage (in the storage folder) is used. Redis and PDO
Expand Down Expand Up @@ -237,29 +237,29 @@
],
'views' => [
'timeline' => false, // Add the views to the timeline (Experimental)
'data' => false, //true for all data, 'keys' for only names, false for no parameters.
'data' => false, // True for all data, 'keys' for only names, false for no parameters.
'group' => 50, // Group duplicate views. Pass value to auto-group, or true/false to force
'exclude_paths' => [ // Add the paths which you don't want to appear in the views
'vendor/filament' // Exclude Filament components by default
],
],
'route' => [
'label' => true, // show complete route on bar
'label' => true, // Show complete route on bar
],
'session' => [
'hiddens' => [], // hides sensitive values using array paths
'hiddens' => [], // Hides sensitive values using array paths
],
'symfony_request' => [
'hiddens' => [], // hides sensitive values using array paths, example: request_request.password
'hiddens' => [], // Hides sensitive values using array paths, example: request_request.password
],
'events' => [
'data' => false, // collect events data, listeners
'data' => false, // Collect events data, listeners
],
'logs' => [
'file' => null,
],
'cache' => [
'values' => true, // collect cache values
'values' => true, // Collect cache values
],
],

Expand All @@ -278,10 +278,10 @@

/*
|--------------------------------------------------------------------------
| DebugBar route prefix
| Debugbar route prefix
|--------------------------------------------------------------------------
|
| Sometimes you want to set route prefix to be used by DebugBar to load
| Sometimes you want to set route prefix to be used by Debugbar to load
| its resources from. Usually the need comes from misconfigured web server or
| from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97
|
Expand All @@ -290,7 +290,7 @@

/*
|--------------------------------------------------------------------------
| DebugBar route middleware
| Debugbar route middleware
|--------------------------------------------------------------------------
|
| Additional middleware to run on the Debugbar routes
Expand All @@ -299,17 +299,17 @@

/*
|--------------------------------------------------------------------------
| DebugBar route domain
| Debugbar route domain
|--------------------------------------------------------------------------
|
| By default DebugBar route served from the same domain that request served.
| 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,

/*
|--------------------------------------------------------------------------
| DebugBar theme
| Debugbar theme
|--------------------------------------------------------------------------
|
| Switches between light and dark theme. If set to auto it will respect system preferences
Expand All @@ -322,7 +322,7 @@
| Backtrace stack limit
|--------------------------------------------------------------------------
|
| By default, the DebugBar limits the number of frames returned by the 'debug_backtrace()' function.
| 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,
Expand Down

0 comments on commit b7bce85

Please # to comment.