Phauthentic /
presentation
| 1 | <?php |
||
| 2 | declare(strict_types = 1); |
||
| 3 | |||
| 4 | namespace Phauthentic\Presentation\Renderer\Exception; |
||
| 5 | |||
| 6 | /** |
||
| 7 | * Missing Template Exception |
||
| 8 | */ |
||
| 9 | class MissingTemplateException extends RendererException |
||
| 10 | { |
||
| 11 | public static function missingFile(string $file ) { |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 12 | return new self('Template file missing: ' . $file); |
||
| 13 | } |
||
| 14 | } |
||
| 15 |