From f1df2e43363b70d3b746c3cfafa6d4551f9fcd70 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Thu, 4 Sep 2014 03:27:13 +0400 Subject: [PATCH] Fixes #4914 --- commands/HelloController.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/commands/HelloController.php b/commands/HelloController.php index 86ab8b8..9314fe7 100644 --- a/commands/HelloController.php +++ b/commands/HelloController.php @@ -27,4 +27,20 @@ class HelloController extends Controller { echo $message . "\n"; } + + public function actionTest() + { + echo 'Test?'; + } + +// public function getDescription($actionID = null) +// { +// return "I'm custom description for $actionID!"; +// } + + + public function getHelp($actionID = null) + { + return "I'm custom help for $actionID!"; + } }