fix: migrations not working on install due to debug mode not being boolean

pull/191/head
Jeroen Pinoy 2024-11-23 20:27:00 +01:00
parent 8d953cd848
commit 041028e04c
No known key found for this signature in database
GPG Key ID: DF33A50B8E4EE081
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ return [
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => filter_var(env('DEBUG', 0), FILTER_VALIDATE_INT, array("options" => array("min_range"=>0, "max_range"=>1))),
'debug' => filter_var(env('DEBUG', false), FILTER_VALIDATE_BOOLEAN),
/*
* Security and encryption configuration

View File

@ -346,8 +346,8 @@ class CerebrateSettingsProvider extends BaseSettingsProvider
'description' => __('The debug level of the instance'),
'default' => 0,
'options' => [
0 => __('Debug Off'),
1 => __('Debug On'),
false => __('Debug Off'),
true => __('Debug On'),
],
'test' => function ($value, $setting, $validator) {
$validator->range('value', [0, 1]);