diff --git a/src/voku/helper/Hooks.php b/src/voku/helper/Hooks.php index 2c111e7..f93d8c5 100644 --- a/src/voku/helper/Hooks.php +++ b/src/voku/helper/Hooks.php @@ -716,9 +716,6 @@ private function _filter_build_unique_id($function) */ public function _call_all_hook($args) { - // <-- refactoring "__call_all_hook()" into "_call_all_hook()" is a breaking change (BC), - // so we will only deprecate the usage - reset($this->filters['all']); do { @@ -746,6 +743,9 @@ public function _call_all_hook($args) */ public function __call_all_hook($args) { + // <-- refactoring "__call_all_hook()" into "_call_all_hook()" is a breaking change (BC), + // so we will only deprecate the usage + $this->_call_all_hook($args); }