has(self::$PARAM_AT)) { $this->setAt($INPUT->int(self::$PARAM_AT)); } } /** * Set the at * * @param int $at */ public function setAt($at) { $this->at = $at; } /** * Updates the given config array with the values currently set * * This should only be called once at the initialization * * @param array $config * @return array */ public function updateConfig($config) { $config = parent::updateConfig($config); if ($this->at) { $config['at'] = $this->at; } return $config; } }