TestCommand.php 451 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\command;
  3. use app\service\EsMobileService;
  4. use app\service\mobile_get\Gdian;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class TestCommand extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('test')->setDescription('test');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. // dd((new Gdian())->getAmount('13565898741'));
  16. }
  17. }