| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function __invoke(Name $name): string { |
||
| 13 | $path = $name->getPath(); |
||
| 14 | if (is_file($path)) { |
||
| 15 | return $path; |
||
| 16 | } |
||
| 17 | |||
| 18 | throw new TemplateNotFound($name->getName(), [$name->getPath()], 'The template "' . $name->getName() . '" could not be found at "' . $name->getPath() . '".'); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |