hidden; } /** * @param $hidden * @return $this */ public function setHidden($hidden) { $this->hidden = $hidden; return $this; } /** * @return ExtendedSelect */ public function enableHidden() { return $this->setHidden(true); } /** * @return ExtendedSelect */ public function disableHidden() { return $this->setHidden(false); } }