Archived
1
0
Fork 0

app/library/Form.php: Phalcon\Forms\Element is renamed to Phalcon\Forms\Element\AbstractElement

This commit is contained in:
Henrik Hautakoski 2022-08-02 12:36:45 +02:00
parent a8edd06011
commit 9cd10581d8

View file

@ -3,7 +3,7 @@
namespace Httpcb; namespace Httpcb;
use Phalcon\Forms\Form as FormBase, use Phalcon\Forms\Form as FormBase,
Phalcon\Forms\Element as FormElement; Phalcon\Forms\Element\AbstractElement;
class Form extends FormBase class Form extends FormBase
{ {
@ -45,7 +45,7 @@ class Form extends FormBase
return $this->_render($ele, $options); return $this->_render($ele, $options);
} }
protected function _render(FormElement $ele, $opt) protected function _render(AbstractElement $ele, $opt)
{ {
$xhtml = ''; $xhtml = '';