diff --git a/app/Constants.php b/app/Constants.php index 4a8910e5aaa1..230d291897cf 100644 --- a/app/Constants.php +++ b/app/Constants.php @@ -540,6 +540,8 @@ if (!defined('APP_NAME')) ]; define('CACHED_TABLES', serialize($cachedTables)); + + // TODO remove these translation functions function uctrans($text) { return ucwords(trans($text)); diff --git a/app/Http/routes.php b/app/Http/routes.php index 676c66d94b3e..ea11794dc264 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -361,5 +361,5 @@ if (Utils::isNinjaDev()) } */ -// Include static constants +// Include static app constants require_once app_path() . '/Constants.php';