allowNull = $allow_null; return $this; } public function getAllowNull() { return $this->allowNull; } public function setHideTime($hide_time) { $this->hideTime = $hide_time; return $this; } public function getHideTime() { return $this->hideTime; } protected function newControl() { return id(new AphrontFormDateControl()) ->setAllowNull($this->getAllowNull()) ->setIsTimeDisabled($this->getHideTime()) ->setViewer($this->getViewer()); } protected function newHTTPParameterType() { return id(new AphrontEpochHTTPParameterType()) ->setAllowNull($this->getAllowNull()); } protected function newConduitParameterType() { return new ConduitEpochParameterType(); } }