diff options
Diffstat (limited to 'phpBB/install/task_interface.php')
-rw-r--r-- | phpBB/install/task_interface.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/install/task_interface.php b/phpBB/install/task_interface.php index 9cfc4d19c2..6f0a01258f 100644 --- a/phpBB/install/task_interface.php +++ b/phpBB/install/task_interface.php @@ -40,8 +40,13 @@ interface task_interface /** * Executes the task - * - * @return null */ public function run(); + + /** + * Returns the language key of the name of the task + * + * @return string + */ + public function get_task_lang_name(); } |