From 8a99ba772d869acf91142b6e0eb8488510c57f7a Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 29 Jan 2023 13:59:51 +0100 Subject: [PATCH] config/*: Remove "Heritage" from default env variables. --- config/app.php | 2 +- config/cache.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/app.php b/config/app.php index bce6a7d..23dffd5 100644 --- a/config/app.php +++ b/config/app.php @@ -13,7 +13,7 @@ return [ | */ - 'name' => env('APP_NAME', 'Heritage Bingo'), + 'name' => env('APP_NAME', 'Bingo'), /* |-------------------------------------------------------------------------- diff --git a/config/cache.php b/config/cache.php index 43b03e3..8108dcf 100644 --- a/config/cache.php +++ b/config/cache.php @@ -105,6 +105,6 @@ return [ | */ - 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'Heritage Bingo'), '_').'_cache'), + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'Bingo'), '_').'_cache'), ];