| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function render() |
||
| 30 | { |
||
| 31 | $this->template->driver = $this->driver; |
||
| 32 | $this->template->database = $this->database; |
||
| 33 | $this->template->type = $this->type; |
||
| 34 | $this->template->table = $this->table; |
||
| 35 | $this->template->item = $this->item; |
||
| 36 | $this->template->setFile(__DIR__ . '/default.latte'); |
||
| 37 | $this->template->render(); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |