diff --git a/public/index.php b/public/index.php index 5920c75..f8a2bbf 100644 --- a/public/index.php +++ b/public/index.php @@ -27,7 +27,6 @@ function config(string $key): bool|string|int|float { } if (gettype($override_value) !== gettype($config[$override_key])) { trigger_error('Type mismatch in config file', E_USER_ERROR); - throw new Exception('Type mismatch in config override file'); } $config[$override_key] = $override_value; }