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