/** * @param AbstractInput $input * @return $this */ protected function addInput(AbstractInput $input) { $input->setForm($this); $this->inputs[$input->getName()] = $input; return $this; }
/** * @param AbstractInput $input * @param array $options * @return string */ public function getInput(AbstractInput $input, array $options = []) { return $input->getField($options); }