handle function declaration to match parent

This commit is contained in:
Mikael Nordfeldth 2015-07-07 20:02:41 +02:00
parent d0458b824a
commit 33dc06ae21

View File

@ -110,18 +110,9 @@ class ApiDirectMessageAction extends ApiAuthAction
return true; return true;
} }
/** protected function handle()
* Handle the request
*
* Show the messages
*
* @param array $args $_REQUEST data (unused)
*
* @return void
*/
function handle($args)
{ {
parent::handle($args); parent::handle();
$this->showMessages(); $this->showMessages();
} }