Skip to content

Commit

Permalink
Fix posProceesor excecute
Browse files Browse the repository at this point in the history
  • Loading branch information
vasiliishvakin committed May 2, 2017
1 parent 2ef0715 commit f953644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConfigLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public function postProcess($dirContent, $dir, $name, $level)
$content = $dirContent;
$processors = $this->getPostProcessors($name);
foreach ($processors as $processor) {
call_user_func($processor, $content, $dir, $name, $level);
$content = call_user_func($processor, $content, $dir, $name, $level);
}
return $content;
}
Expand Down

0 comments on commit f953644

Please sign in to comment.