/**
  * Synchronises the job with Translation Proxy and increments the cancelled
  * job count in case of having cancelled a job.
  *
  * @param WPML_TP_Polling_Counts $counts count object to be updated
  */
 protected function sync_action(&$counts)
 {
     if ($this->pro_translation->poll_updated_job_status_with_log(array($this->data['id'], $this->data['cms_id'], 'cancelled'), true)) {
         $counts->cancel_job();
     }
 }