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