app/library/Form.php: Phalcon\Forms\Element is renamed to Phalcon\Forms\Element\AbstractElement
This commit is contained in:
parent
a8edd06011
commit
9cd10581d8
1 changed files with 2 additions and 2 deletions
|
|
@ -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 = '';
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue