예제 #1
0
파일: Job.php 프로젝트: contatta/qless-php
 /**
  * Change the status of this job to complete
  *
  * @return bool
  */
 public function complete()
 {
     $jsonData = json_encode($this->data, JSON_UNESCAPED_SLASHES);
     return $this->client->complete($this->jid, $this->worker_name, $this->queue_name, $jsonData);
 }