/**
  * Shorthand for setting conditions on the post_status
  * column.
  * @param  string $status
  * @return QueriableEntity
  */
 public function status($status = null)
 {
     $this->reloadQueryAdapter();
     $this->activeQuery->status($status);
     return $this;
 }