From: Michael J. Rubinsky Date: Thu, 6 May 2010 16:16:25 +0000 (-0400) Subject: fix interface function signature X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2c772b21b622ed04c81c7c6cca6191ec54e13a30;p=horde.git fix interface function signature --- diff --git a/framework/Notification/lib/Horde/Notification/Storage/Interface.php b/framework/Notification/lib/Horde/Notification/Storage/Interface.php index ffe7e43e7..4d881b745 100644 --- a/framework/Notification/lib/Horde/Notification/Storage/Interface.php +++ b/framework/Notification/lib/Horde/Notification/Storage/Interface.php @@ -65,6 +65,6 @@ interface Horde_Notification_Storage_Interface * this listener. * @param Horde_Notification_Event $event The event to store. */ - public function push($listener, $event); + public function push($listener, Notification_Event_Listener $event); }