From 31c324dd9242958900776f6a06aaee19ebf8e10e Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Sat, 23 Oct 2021 13:08:24 +0200 Subject: [PATCH] Updated the exception message. --- application/helpers/config_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/config_helper.php b/application/helpers/config_helper.php index 7b262c62..a404ce83 100644 --- a/application/helpers/config_helper.php +++ b/application/helpers/config_helper.php @@ -36,7 +36,7 @@ function config($key, $default = NULL) if (is_null($key)) { - throw new InvalidArgumentException('The key argument cannot be empty.'); + throw new InvalidArgumentException('The $key argument cannot be empty.'); } if (is_array($key))