/**
  * Execute the console command.
  *
  * @return mixed
  */
 public function handle()
 {
     while ($this->verificationRepo->hasMoreToProcess()) {
         $this->info("---------------------------------");
         $this->info("There are rows to process");
         $this->queueRepo->process();
     }
 }
 /**
  * manually process the email queue
  * @return null
  */
 public function process(\App\V1\Repositories\QueueRepository $repo)
 {
     $repo->process();
 }
Ejemplo n.º 3
0
 public function handle(\App\V1\Repositories\QueueRepository $queue)
 {
     $queue->process();
 }