EsMapCommand.php 401 B

12345678910111213141516171819
  1. <?php
  2. namespace app\common\command;
  3. use app\service\EsMobileService;
  4. use think\console\Command;
  5. use think\console\Input;
  6. use think\console\Output;
  7. class EsMapCommand extends Command{
  8. protected function configure()
  9. {
  10. $this->setName('es:map')->setDescription('test');
  11. }
  12. protected function execute(Input $input, Output $output)
  13. {
  14. EsMobileService::mapping();
  15. }
  16. }