From 403e0a69da9bdb2ae509851369e4c3b0044d023a Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 13 Aug 2021 15:03:34 +0000 Subject: [PATCH] fix(typo): missing semicolumn --- src/RabbitContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RabbitContext.php b/src/RabbitContext.php index abe254d..7c8118d 100644 --- a/src/RabbitContext.php +++ b/src/RabbitContext.php @@ -18,7 +18,7 @@ public static function loadEnv() { $env_file = getenv('APPLICATION_ENV') . '.php'; foreach ([ "./app/Env/", "./app/env/" ] as $env_dir) { - $path = $env_dir . $env_file + $path = $env_dir . $env_file; if (file_exists($path)) { require_once($path); }