Fixed require() in LoggerConfig
This commit is contained in:
parent
581d2bc26c
commit
452a5381b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue