From 793d25292f4206c1e96997177c6598dd8d6b814e Mon Sep 17 00:00:00 2001 From: Luciano Baraglia Date: Sun, 21 Jul 2013 11:39:32 -0300 Subject: [PATCH] Typo fix [skip ci] --- apps/basic/commands/HelloController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/basic/commands/HelloController.php b/apps/basic/commands/HelloController.php index b5ecac2..221fa1a 100644 --- a/apps/basic/commands/HelloController.php +++ b/apps/basic/commands/HelloController.php @@ -9,21 +9,21 @@ namespace app\commands; use yii\console\Controller; /** - * This command echos what the first argument that you have entered. + * This command echoes what the first argument that you have entered. * * This command is provided as an example for you to learn how to create console commands. - * + * * @author Qiang Xue * @since 2.0 */ class HelloController extends Controller { /** - * This command echos what you have entered as the message. + * This command echoes what you have entered as the message. * @param string $message the message to be echoed. */ public function actionIndex($message = 'hello world') { echo $message."\n"; } -} \ No newline at end of file +}