/**
  * Removes a sort key (and direction)
  *
  * @param string $key
  * @return self
  **/
 public function removeSort($key)
 {
     $this->criteria->removeSort($key, $order);
     return $this;
 }