From 04dae16157f2ee099bd6d5a3392a064722292366 Mon Sep 17 00:00:00 2001 From: Corpsee Date: Thu, 20 Mar 2014 22:51:30 +0700 Subject: [PATCH] Fixed require() in LoggerConfig --- PHPCI/Logging/LoggerConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Logging/LoggerConfig.php b/PHPCI/Logging/LoggerConfig.php index b0ebeeec..5c579f6e 100644 --- a/PHPCI/Logging/LoggerConfig.php +++ b/PHPCI/Logging/LoggerConfig.php @@ -22,7 +22,7 @@ class LoggerConfig { public static function newFromFile($filePath) { if (file_exists($filePath)) { - $configArray = require_once($filePath); + $configArray = require($filePath); } else { $configArray = array();