| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function test1() { |
||
| 30 | $form = new \hemio\form\FormPost('test'); |
||
| 31 | |||
| 32 | $form->addInheritableAppendage( |
||
| 33 | \hemio\form\FormPost::FORM_FIELD_TEMPLATE, new FormPlainControl() |
||
| 34 | ); |
||
| 35 | |||
| 36 | $form->addChild(new \hemio\form\FieldEmail('test1', 'title1')); |
||
| 37 | |||
| 38 | $form->__toString(); |
||
| 39 | } |
||
| 40 | |||
| 42 |