Skip to content

Commit 09653ad

Browse files
authored
Use Ignition defaults as fallback on config.php (#1535)
1 parent d1a4896 commit 09653ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/debugbar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
|
6161
*/
6262

63-
'editor' => env('DEBUGBAR_EDITOR', 'phpstorm'),
63+
'editor' => env('DEBUGBAR_EDITOR') ?: env('IGNITION_EDITOR', 'phpstorm'),
6464

6565
/*
6666
|--------------------------------------------------------------------------
@@ -305,7 +305,7 @@
305305
| Switches between light and dark theme. If set to auto it will respect system preferences
306306
| Possible values: auto, light, dark
307307
*/
308-
'theme' => env('DEBUGBAR_THEME', 'auto'),
308+
'theme' => env('DEBUGBAR_THEME') ?: env('IGNITION_THEME', 'auto'),
309309

310310
/*
311311
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)