Skip to content

Commit

Permalink
Merge pull request yiisoft#645 from lucianobaraglia/master
Browse files Browse the repository at this point in the history
Typo fix [skip ci]
  • Loading branch information
qiangxue committed Jul 21, 2013
2 parents 203f4bf + 793d252 commit ef2d099
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/basic/commands/HelloController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
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 <[email protected]>
* @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";
}
}
}

0 comments on commit ef2d099

Please sign in to comment.