aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/event
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-01-08 00:48:21 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-01-08 00:48:21 +0100
commit82422968796188d4284d7cba0f837ee8f333bf11 (patch)
tree6a797d7ca05d115538823e4a5efe7bf0784b4d30 /phpBB/includes/event
parent80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db (diff)
downloadforums-82422968796188d4284d7cba0f837ee8f333bf11.tar
forums-82422968796188d4284d7cba0f837ee8f333bf11.tar.gz
forums-82422968796188d4284d7cba0f837ee8f333bf11.tar.bz2
forums-82422968796188d4284d7cba0f837ee8f333bf11.tar.xz
forums-82422968796188d4284d7cba0f837ee8f333bf11.zip
[feature/event-dispatcher] Fix event class name in dispatcher interface
PHPBB3-9550
Diffstat (limited to 'phpBB/includes/event')
-rw-r--r--phpBB/includes/event/dispatcher_interface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/event/dispatcher_interface.php b/phpBB/includes/event/dispatcher_interface.php
index 2564591ed7..0a4881b3ba 100644
--- a/phpBB/includes/event/dispatcher_interface.php
+++ b/phpBB/includes/event/dispatcher_interface.php
@@ -35,7 +35,7 @@ interface phpbb_event_dispatcher_interface
*
* @api
*/
- function dispatch($event_name, Event $event = null);
+ function dispatch($event_name, phpbb_event $event = null);
/**
* Adds an event listener that listens on the specified events.