Example #1
0
 /**
  * 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);
 }