| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class DirectRenderer extends Table\AOutput |
||
| 15 | { |
||
| 16 | protected Template $template; |
||
| 17 | |||
| 18 | public function __construct(Table $table) |
||
| 19 | { |
||
| 20 | parent::__construct($table); |
||
| 21 | $this->template = new Template(); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getTemplate(): Template |
||
| 25 | { |
||
| 26 | return $this->template; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function render(): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |