From f9867d2d6f3ea6cb0f46048b86473b97462c111c Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 12 Sep 2014 22:27:06 +0200 Subject: [PATCH] Fixed type-hint to correct object URLMapper as the other does not exist. Signed-off-by: Roland Haeder --- plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php index ee6bd0ebea..9c9f6bf99c 100644 --- a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php +++ b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php @@ -70,11 +70,11 @@ class GroupPrivateMessagePlugin extends Plugin /** * Map URLs to actions * - * @param Net_URL_Mapper $m path-to-action mapper + * @param URLMapper $m path-to-action mapper * * @return boolean hook value */ - function onRouterInitialized($m) + function onRouterInitialized(URLMapper $m) { $m->connect('group/:nickname/inbox', array('action' => 'groupinbox'), -- 2.39.2