| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 78 | public function getBody(array $data = []) |
||
| 79 | { |
||
| 80 | $viewContent = new ViewModel($data); |
||
| 81 | $viewContent->setTemplate($this->template); |
||
| 82 | $content = $this->renderer->render($viewContent); |
||
| 83 | |||
| 84 | $this->layout->setVariable('content', $content); |
||
| 85 | |||
| 86 | return $this->renderer->render($this->layout); |
||
| 87 | } |
||
| 88 | |||
| 104 | } |