| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | 2 | public function renderInput($attributes = null): string |
|
| 38 | { |
||
| 39 | 2 | $this->addAttributes($attributes); |
|
| 40 | 2 | $this->setAttribute('name', $this->getKey()); |
|
| 41 | 2 | return $this->wrapIt(sprintf($this->templateInput, strval($this->originalValue), $this->renderAttributes(), $this->renderChildren()), $this->wrappersInput); |
|
| 42 | } |
||
| 44 |