Skip to content

Commit

Permalink
Fix E_NOTICE warning in ConfigFile
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Feb 22, 2017
1 parent 841a7ec commit 8003626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util/ConfigFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private function evaluate()
$exception = null;
$autoloader = array($this, 'evaluateAutoloader');
spl_autoload_register($autoloader, true, false);
$prevErrorHandler = set_error_handler(array($this, evaluateHandleError));
$prevErrorHandler = set_error_handler(array($this, 'evaluateHandleError'));
$this->lastEvaluateError = null;
try {
$code = include $filename;
Expand Down

0 comments on commit 8003626

Please sign in to comment.