app/forms/UserSettings.php: Phalcon\Forms\Element is renamed to Phalcon\Forms\AbstractElement
This commit is contained in:
parent
863175eb51
commit
376f3dfd11
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ use App\Model\Data\User as UserModel;
|
|||
* Phalcon Form
|
||||
*/
|
||||
use Phalcon\Forms\Form as FormBase,
|
||||
Phalcon\Forms\Element as FormElement;
|
||||
Phalcon\Forms\Element\AbstractElement;
|
||||
|
||||
/**
|
||||
* Element types
|
||||
|
|
@ -210,7 +210,7 @@ class UserSettings extends FormBase
|
|||
return $this->_render($ele, $options);
|
||||
}
|
||||
|
||||
protected function _render(FormElement $ele, $opt)
|
||||
protected function _render(AbstractElement $ele, $opt)
|
||||
{
|
||||
$xhtml = '';
|
||||
|
||||
|
|
|
|||
Reference in a new issue