| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 20 | public function render($context = []) |
|
| 28 | { |
||
| 29 | 20 | parent::render($context); |
|
| 30 | 20 | $this->getEngine()->parse($this->template); |
|
| 31 | $data = [ |
||
| 32 | 20 | 'element' => $this->getElement(), |
|
| 33 | 20 | 'context' => $context, |
|
| 34 | 'renderer' => $this |
||
| 35 | 20 | ]; |
|
| 36 | 20 | return $this->getEngine()->process($data); |
|
| 37 | } |
||
| 38 | } |