/**
  * {@inheritDoc}
  */
 public function kickJob($job)
 {
     if ($this->dispatcher) {
         $this->dispatcher->dispatch(CommandEvent::KICK_JOB, new CommandEvent($this, ['job' => $job]));
     }
     $this->pheanstalk->kickJob($job);
     return $this;
 }