2023-01-29 10:26:52 +08:00

20 lines
448 B
PHP

<?php
/***消费第一次低充推送命令定义*****/
namespace app\common\command;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class Rpush extends Command{
protected function configure(){
$this->setName('onerpush')->setDescription('push redis php');
}
protected function execute(Input $input, Output $output){
$output->writeln(controller('task/Runwxpush')->index());
}
}