|
26 | 26 | | Storage settings
|
27 | 27 | |--------------------------------------------------------------------------
|
28 | 28 | |
|
29 |
| - | DebugBar stores data for session/ajax requests. |
| 29 | + | Debugbar stores data for session/ajax requests. |
30 | 30 | | You can disable this, so the debugbar stores data in headers/session,
|
31 | 31 | | but this can cause problems with large data collectors.
|
32 | 32 | | By default, file storage (in the storage folder) is used. Redis and PDO
|
|
237 | 237 | ],
|
238 | 238 | 'views' => [
|
239 | 239 | '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. |
241 | 241 | 'group' => 50, // Group duplicate views. Pass value to auto-group, or true/false to force
|
242 | 242 | 'exclude_paths' => [ // Add the paths which you don't want to appear in the views
|
243 | 243 | 'vendor/filament' // Exclude Filament components by default
|
244 | 244 | ],
|
245 | 245 | ],
|
246 | 246 | 'route' => [
|
247 |
| - 'label' => true, // show complete route on bar |
| 247 | + 'label' => true, // Show complete route on bar |
248 | 248 | ],
|
249 | 249 | 'session' => [
|
250 |
| - 'hiddens' => [], // hides sensitive values using array paths |
| 250 | + 'hiddens' => [], // Hides sensitive values using array paths |
251 | 251 | ],
|
252 | 252 | '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 |
254 | 254 | ],
|
255 | 255 | 'events' => [
|
256 |
| - 'data' => false, // collect events data, listeners |
| 256 | + 'data' => false, // Collect events data, listeners |
257 | 257 | ],
|
258 | 258 | 'logs' => [
|
259 | 259 | 'file' => null,
|
260 | 260 | ],
|
261 | 261 | 'cache' => [
|
262 |
| - 'values' => true, // collect cache values |
| 262 | + 'values' => true, // Collect cache values |
263 | 263 | ],
|
264 | 264 | ],
|
265 | 265 |
|
|
278 | 278 |
|
279 | 279 | /*
|
280 | 280 | |--------------------------------------------------------------------------
|
281 |
| - | DebugBar route prefix |
| 281 | + | Debugbar route prefix |
282 | 282 | |--------------------------------------------------------------------------
|
283 | 283 | |
|
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 |
285 | 285 | | its resources from. Usually the need comes from misconfigured web server or
|
286 | 286 | | from trying to overcome bugs like this: http://trac.nginx.org/nginx/ticket/97
|
287 | 287 | |
|
|
290 | 290 |
|
291 | 291 | /*
|
292 | 292 | |--------------------------------------------------------------------------
|
293 |
| - | DebugBar route middleware |
| 293 | + | Debugbar route middleware |
294 | 294 | |--------------------------------------------------------------------------
|
295 | 295 | |
|
296 | 296 | | Additional middleware to run on the Debugbar routes
|
|
299 | 299 |
|
300 | 300 | /*
|
301 | 301 | |--------------------------------------------------------------------------
|
302 |
| - | DebugBar route domain |
| 302 | + | Debugbar route domain |
303 | 303 | |--------------------------------------------------------------------------
|
304 | 304 | |
|
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. |
306 | 306 | | To override default domain, specify it as a non-empty value.
|
307 | 307 | */
|
308 | 308 | 'route_domain' => null,
|
309 | 309 |
|
310 | 310 | /*
|
311 | 311 | |--------------------------------------------------------------------------
|
312 |
| - | DebugBar theme |
| 312 | + | Debugbar theme |
313 | 313 | |--------------------------------------------------------------------------
|
314 | 314 | |
|
315 | 315 | | Switches between light and dark theme. If set to auto it will respect system preferences
|
|
322 | 322 | | Backtrace stack limit
|
323 | 323 | |--------------------------------------------------------------------------
|
324 | 324 | |
|
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. |
326 | 326 | | If you need larger stacktraces, you can increase this number. Setting it to 0 will result in no limit.
|
327 | 327 | */
|
328 | 328 | 'debug_backtrace_limit' => 50,
|
|
0 commit comments