21 lines
445 B
PHP
21 lines
445 B
PHP
<?php
|
|
/***出队消费任务2*****/
|
|
namespace app\common\command;
|
|
|
|
use think\console\Command;
|
|
use think\console\Input;
|
|
use think\console\Output;
|
|
|
|
class Rpushtwo extends Command{
|
|
|
|
protected function configure(){
|
|
$this->setName('rpushtwo')->setDescription('push redis php');
|
|
}
|
|
|
|
protected function execute(Input $input, Output $output){
|
|
|
|
$output->writeln(controller('task/Runwxpush')->paypushtwo());
|
|
|
|
}
|
|
|
|
} |