Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
29 | protected function renderInner() |
||
30 | { |
||
31 | $val = $this->input_attributes['value']; |
||
32 | unset($this->input_attributes['value']); |
||
33 | |||
34 | $attributes = $this->renderAttributes($this->input_attributes); |
||
35 | |||
36 | $this->result .= "<textarea $attributes>" . htmlentities($val, ENT_QUOTES, 'UTF-8', false) . '</textarea>'; |
||
37 | } |
||
38 | } |
||
39 |