mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Merge branch 'develop' of https://github.com/snipe/snipe-it into develop
This commit is contained in:
commit
b6daad7573
|
@ -103,12 +103,17 @@ class Setting extends Model
|
||||||
*
|
*
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @return \App\Models\Setting
|
* @return \App\Models\Setting|null
|
||||||
*/
|
*/
|
||||||
public static function getSettings()
|
public static function getSettings(): ?Setting
|
||||||
{
|
{
|
||||||
return Cache::rememberForever(self::APP_SETTINGS_KEY, function () {
|
return Cache::rememberForever(self::APP_SETTINGS_KEY, function () {
|
||||||
return self::first();
|
// Need for setup as no tables exist
|
||||||
|
try {
|
||||||
|
return self::first();
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue