1: <?php
2:
3: namespace Charcoal\Ui\Form;
4:
5: use \Charcoal\Ui\Form\AbstractForm;
6:
7: /**
8: * A Generic Form
9: *
10: * Concreete implementation of {@see \Charcoal\Ui\Form\FormInterface}.
11: */
12: class GenericForm extends AbstractForm
13: {
14: /**
15: * Retrieve the form type.
16: *
17: * @return string
18: */
19: public function type()
20: {
21: return 'charcoal/ui/form/generic';
22: }
23: }
24: