Conditions | 1 |
Paths | 1 |
Total Lines | 27 |
Code Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | public function init() |
||
25 | { |
||
26 | $this->setName('applicant-mail'); |
||
27 | |||
28 | |||
29 | $this |
||
30 | ->add( |
||
31 | array( |
||
32 | 'type' => 'hidden', |
||
33 | 'name' => 'applicationId', |
||
34 | ) |
||
35 | ) |
||
36 | ->add( |
||
37 | array( |
||
38 | 'type' => 'hidden', |
||
39 | 'name' => 'status', |
||
40 | ) |
||
41 | ) |
||
42 | ->add( |
||
43 | array( |
||
44 | 'name' => 'mailSubject', |
||
45 | ) |
||
46 | ) |
||
47 | ->add( |
||
48 | array( |
||
49 | 'type' => 'textarea', |
||
50 | 'name' => 'mailText' |
||
51 | ) |
||
55 |