/**
  *  Flag the entry with the given id as reviewed.
  *
  *  @param  integer $id
  *  @return boolean
  */
 public function flagAsReviewed($id)
 {
     $this->model->where('id', $id)->update(['unstable' => '0']);
 }