Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 1 | public function init() |
|
21 | { |
||
22 | 1 | $this->setAttribute('type', 'hidden'); |
|
23 | 1 | $this->setAttribute('class', 'form-control'); |
|
24 | 1 | $stringTrim = new FilterAdapterZf(new StringTrim()); |
|
25 | 1 | $stripTags = new FilterAdapterZf(new StripTags()); |
|
26 | 1 | $this->addFilter($stringTrim); |
|
27 | 1 | $this->addFilter($stripTags); |
|
28 | } |
||
29 | } |