You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently auto completion is missing due to the use of arrays inside most methods.
Are you by any chance looking into making a change to make the project more object oriented?
e.g.
$textField = new TextField('field_name', 'field_id');
$textField->addLabel('This is a label for the text field')
->addClass('form-control')
->value($prefillValue);
$this->add($textField);
$selectField = new SelectField('select_name', 'select_id');
$selectField->addChoice('en', 'English')
->addChoice('fr', 'French')
->addLabel('Select field label')
->setMultiple(true)
$this->add($selectField);
The text was updated successfully, but these errors were encountered:
Currently auto completion is missing due to the use of arrays inside most methods.
Are you by any chance looking into making a change to make the project more object oriented?
e.g.
The text was updated successfully, but these errors were encountered: