Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | 2 | public function getContent($view): string |
|
16 | { |
||
17 | 2 | $file = getcwd() . '/' . $this->config['template_dir'] . "/$view.html"; |
|
18 | |||
19 | 2 | if (!file_exists($file)) { |
|
20 | throw new \Exception("$file template not found"); // @codeCoverageIgnore |
||
21 | } |
||
22 | |||
23 | 2 | return $this->removeTags(file_get_contents($file)); |
|
24 | } |
||
31 |