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