/**
  * Ignores a tube
  *
  * @param $tube
  * @return $this
  * @chainable
  */
 public function ignore($tube)
 {
     $this->pheanstalk->ignore($tube);
     return $this;
 }