| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | private function getPdf(string $templatePath, array $config = []): string |
||
| 22 | { |
||
| 23 | $config = [ |
||
| 24 | ...$this->config, |
||
| 25 | ...$config, |
||
| 26 | 'headerTemplate' => (string)view("$templatePath.tpl.header"), |
||
| 27 | 'footerTemplate' => (string)view("$templatePath.tpl.footer"), |
||
| 28 | ]; |
||
| 29 | return GeneratorFacade::getPdf((string)view($templatePath), $config); |
||
| 30 | } |
||
| 62 |