hooked.php

Event hook dispatch utility
git clone git://git.finwo.net/lib/hooked.php
Log | Files | Refs

commit 9b8f381090f1f0eb0dd52ccd34ff0a7c2f85b33e
parent 226ec621eb08c98224e2402a3ec43801088b101b
Author: finwo <finwo@pm.me>
Date:   Fri, 22 Apr 2016 22:18:21 +0200

Removed non-referenced parameters from caller

Diffstat:
Msrc/Hooked.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Hooked.php b/src/Hooked.php @@ -78,7 +78,7 @@ abstract class Hooked // Call the hook if (!$invoker->call($hook, array_merge(array( 'event' => $event - ), $event->get('param')))) { + )))) { // Break propegation if asked to break; }