From ccac8b3bc967891713c99df4a4a9f8fa4bd96ef2 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 10 Jan 2017 13:16:37 +0200 Subject: [PATCH] Working on tests --- app/Constants.php | 2 ++ app/Http/routes.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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';