HelloController.php 687 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace app\commands;
  8. use yii\console\Controller;
  9. /**
  10. * This command echos what the first argument that you have entered.
  11. *
  12. * This command is provided as an example for you to learn how to create console commands.
  13. *
  14. * @author Qiang Xue <qiang.xue@gmail.com>
  15. * @since 2.0
  16. */
  17. class HelloController extends Controller
  18. {
  19. /**
  20. * This command echos what you have entered as the message.
  21. * @param string $message the message to be echoed.
  22. */
  23. public function actionIndex($message = 'hello world')
  24. {
  25. echo $message."\n";
  26. }
  27. }