| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | 1 | public function __toString() |
|
| 33 | { |
||
| 34 | 1 | $attributes = $this->attributes; |
|
| 35 | 1 | $this->attributes = []; |
|
| 36 | 1 | $value = $attributes['value'] ?? ''; |
|
| 37 | |||
| 38 | 1 | unset($attributes['type']); |
|
| 39 | 1 | unset($attributes['value']); |
|
| 40 | |||
| 41 | 1 | return $this->renderFullElement( |
|
| 42 | 1 | $this->type, |
|
| 43 | $value, |
||
| 44 | $attributes |
||
| 45 | ); |
||
| 48 |