From 4edd7b57c0057f9cfab0874a198256b87bd018b7 Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Sun, 9 Aug 2015 19:12:51 +0200 Subject: bug 1396: Codestyle cleanup --- manager/library/actions/ActionMail.php | 84 +++++++++++++++++----------------- 1 file changed, 42 insertions(+), 42 deletions(-) (limited to 'manager/library/actions/ActionMail.php') diff --git a/manager/library/actions/ActionMail.php b/manager/library/actions/ActionMail.php index fc4f172..65f55d6 100644 --- a/manager/library/actions/ActionMail.php +++ b/manager/library/actions/ActionMail.php @@ -3,51 +3,51 @@ require_once (FWACTIONS_PATH . '/FWAction.php'); class Mail extends FWAction { - /** - * get a list of required permissions that are needed to access this action - * @return array - */ - public static function getRequiredPermissions() { - return array(); - } + /** + * get a list of required permissions that are needed to access this action + * @return array + */ + public static function getRequiredPermissions() { + return array(); + } - /** - * get a role that is required for accessing that action - * @return string - */ - public static function getRequiredRole() { - return 'User'; - } + /** + * get a role that is required for accessing that action + * @return string + */ + public static function getRequiredRole() { + return 'User'; + } - /** - * sort order for top navigation - * @return integer - */ - public static function getTopNavPrio() { - return 100; - } + /** + * sort order for top navigation + * @return integer + */ + public static function getTopNavPrio() { + return 100; + } - /** - * controller to invoke - * @return string - */ - public static function getController() { - return 'mail'; - } + /** + * controller to invoke + * @return string + */ + public static function getController() { + return 'mail'; + } - /** - * action to invoke - * @return string - */ - public static function getAction() { - return 'index'; - } + /** + * action to invoke + * @return string + */ + public static function getAction() { + return 'index'; + } - /** - * get text for menu, caller is responsible for translating - * @return string - */ - public static function getMenuText() { - return 'Mail'; - } + /** + * get text for menu, caller is responsible for translating + * @return string + */ + public static function getMenuText() { + return 'Mail'; + } } -- cgit v1.2.1