Return default value on exception for setting()
This commit is contained in:
@@ -151,6 +151,8 @@ if (!function_exists('setting')) {
|
||||
* @param $key
|
||||
* @param mixed $default
|
||||
*
|
||||
* @throws \Exception
|
||||
*
|
||||
* @return mixed|null
|
||||
*/
|
||||
function setting($key, $default = null)
|
||||
@@ -161,6 +163,8 @@ if (!function_exists('setting')) {
|
||||
$value = $settingRepo->retrieve($key);
|
||||
} catch (SettingNotFound $e) {
|
||||
return $default;
|
||||
} catch (Exception $e) {
|
||||
return $default;
|
||||
}
|
||||
|
||||
return $value;
|
||||
|
||||
Reference in New Issue
Block a user