Skip to content
Snippets Groups Projects

Revert to using FormElement instead of FormElementBase

5 files
+ 9
9
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -4,14 +4,14 @@ namespace Drupal\term_reference_tree\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\CompositeFormElementTrait;
use Drupal\Core\Render\Element\FormElementBase;
use Drupal\Core\Render\Element\FormElement;
/**
* Provides a form element for term reference tree.
*
* @FormElement("checkbox_tree")
*/
class CheckboxTree extends FormElementBase {
class CheckboxTree extends FormElement {
use CompositeFormElementTrait;
Loading