diff options
Diffstat (limited to 'includes/pages/admin_questions.php')
-rw-r--r-- | includes/pages/admin_questions.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/includes/pages/admin_questions.php b/includes/pages/admin_questions.php index c65280d5..032b010e 100644 --- a/includes/pages/admin_questions.php +++ b/includes/pages/admin_questions.php @@ -1,5 +1,8 @@ <?php +/** + * @return string + */ function admin_questions_title() { return _("Answer questions"); @@ -7,6 +10,8 @@ function admin_questions_title() /** * Renders a hint for new questions to answer. + * + * @return string|null */ function admin_new_questions() { @@ -25,6 +30,9 @@ function admin_new_questions() return null; } +/** + * @return string + */ function admin_questions() { global $user; @@ -136,4 +144,6 @@ function admin_questions() break; } } + + return ''; } |