Skip to content

Commit b7bce85

Browse files
authored
Fix Debugbar spelling inconsistencies (barryvdh#1626)
1 parent 6a1304c commit b7bce85

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

config/debugbar.php

+14-14
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
| Storage settings
2727
|--------------------------------------------------------------------------
2828
|
29-
| DebugBar stores data for session/ajax requests.
29+
| Debugbar stores data for session/ajax requests.
3030
| You can disable this, so the debugbar stores data in headers/session,
3131
| but this can cause problems with large data collectors.
3232
| By default, file storage (in the storage folder) is used. Redis and PDO
@@ -237,29 +237,29 @@
237237
],
238238
'views' => [
239239
'timeline' => false, // Add the views to the timeline (Experimental)
240-
'data' => false, //true for all data, 'keys' for only names, false for no parameters.
240+
'data' => false, // True for all data, 'keys' for only names, false for no parameters.
241241
'group' => 50, // Group duplicate views. Pass value to auto-group, or true/false to force
242242
'exclude_paths' => [ // Add the paths which you don't want to appear in the views
243243
'vendor/filament' // Exclude Filament components by default
244244
],
245245
],
246246
'route' => [
247-
'label' => true, // show complete route on bar
247+
'label' => true, // Show complete route on bar
248248
],
249249
'session' => [
250-
'hiddens' => [], // hides sensitive values using array paths
250+
'hiddens' => [], // Hides sensitive values using array paths
251251
],
252252
'symfony_request' => [
253-
'hiddens' => [], // hides sensitive values using array paths, example: request_request.password
253+
'hiddens' => [], // Hides sensitive values using array paths, example: request_request.password
254254
],
255255
'events' => [
256-
'data' => false, // collect events data, listeners
256+
'data' => false, // Collect events data, listeners
257257
],
258258
'logs' => [
259259
'file' => null,
260260
],
261261
'cache' => [
262-
'values' => true, // collect cache values
262+
'values' => true, // Collect cache values
263263
],
264264
],
265265

@@ -278,10 +278,10 @@
278278

279279
/*
280280
|--------------------------------------------------------------------------
281-
| DebugBar route prefix
281+
| Debugbar route prefix
282282
|--------------------------------------------------------------------------
283283
|
284-
| Sometimes you want to set route prefix to be used by DebugBar to load
284+
| Sometimes you want to set route prefix to be used by Debugbar to load
285285
| its resources from. Usually the need comes from misconfigured web server or
286286
| from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97
287287
|
@@ -290,7 +290,7 @@
290290

291291
/*
292292
|--------------------------------------------------------------------------
293-
| DebugBar route middleware
293+
| Debugbar route middleware
294294
|--------------------------------------------------------------------------
295295
|
296296
| Additional middleware to run on the Debugbar routes
@@ -299,17 +299,17 @@
299299

300300
/*
301301
|--------------------------------------------------------------------------
302-
| DebugBar route domain
302+
| Debugbar route domain
303303
|--------------------------------------------------------------------------
304304
|
305-
| By default DebugBar route served from the same domain that request served.
305+
| By default Debugbar route served from the same domain that request served.
306306
| To override default domain, specify it as a non-empty value.
307307
*/
308308
'route_domain' => null,
309309

310310
/*
311311
|--------------------------------------------------------------------------
312-
| DebugBar theme
312+
| Debugbar theme
313313
|--------------------------------------------------------------------------
314314
|
315315
| Switches between light and dark theme. If set to auto it will respect system preferences
@@ -322,7 +322,7 @@
322322
| Backtrace stack limit
323323
|--------------------------------------------------------------------------
324324
|
325-
| By default, the DebugBar limits the number of frames returned by the 'debug_backtrace()' function.
325+
| By default, the Debugbar limits the number of frames returned by the 'debug_backtrace()' function.
326326
| If you need larger stacktraces, you can increase this number. Setting it to 0 will result in no limit.
327327
*/
328328
'debug_backtrace_limit' => 50,

0 commit comments

Comments
 (0)