| Total Complexity | 6 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 4 | final class HtmlOutput extends \WebServCo\Framework\AbstractLibrary implements |
||
| 5 | \WebServCo\Framework\Interfaces\OutputInterface |
||
| 6 | { |
||
| 7 | private $path; |
||
| 8 | private $template; |
||
| 9 | |||
| 10 | public function setPath($path) |
||
| 11 | { |
||
| 12 | $this->path = $path; |
||
| 13 | return true; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function setTemplate($template) |
||
| 20 | } |
||
| 21 | |||
| 22 | public function render() |
||
| 42 |