| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function init() |
||
| 12 | { |
||
| 13 | parent::init(); // TODO: Change the autogenerated stub |
||
| 14 | $this->add(new Text('firstName', ['label' => 'First name'])); |
||
| 15 | $this->add(new Text('lastName', ['label' => 'Last name'])); |
||
| 16 | $this->add(new Text('email', ['label' => 'Email'])); |
||
| 17 | $this->add(new Text('ticketId', ['label' => 'Ticket Id'])); |
||
| 18 | $this->add(new Submit('submit', ['label' => 'Search'])); |
||
| 19 | } |
||
| 20 | } |