| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class Template |
||
| 11 | { |
||
| 12 | private string $template; |
||
| 13 | private string $base; |
||
| 14 | |||
| 15 | public function __construct(string $template, string $base) |
||
| 16 | { |
||
| 17 | $this->template = $template; |
||
| 18 | $this->base = $base; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getTemplate(): string |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getBase(): string |
||
| 31 |