From: Mikael Nordfeldth Date: Tue, 7 Jul 2015 18:02:41 +0000 (+0200) Subject: handle function declaration to match parent X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=33dc06ae21daf9a98fd3c44c0eddcd02e0a67fc6;p=quix0rs-gnu-social.git handle function declaration to match parent --- diff --git a/plugins/DirectMessage/actions/apidirectmessage.php b/plugins/DirectMessage/actions/apidirectmessage.php index 17c445c276..8e7f6f8061 100644 --- a/plugins/DirectMessage/actions/apidirectmessage.php +++ b/plugins/DirectMessage/actions/apidirectmessage.php @@ -110,18 +110,9 @@ class ApiDirectMessageAction extends ApiAuthAction return true; } - /** - * Handle the request - * - * Show the messages - * - * @param array $args $_REQUEST data (unused) - * - * @return void - */ - function handle($args) + protected function handle() { - parent::handle($args); + parent::handle(); $this->showMessages(); }