end() public method

Echoes a closing tag and unbinds the Form helper from any Record or Document object used to generate the corresponding form.
public end ( ) : string
return string Returns a closing `` tag.
Esempio n. 1
0
 public function end()
 {
     unset($this->model);
     unset($this->instance);
     unset($this->schema);
     unset($this->rules);
     return parent::end();
 }