Issues (40)

Renderer/Exception/MissingTemplateException.php (1 issue)

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
Expected 0 spaces before closing parenthesis; 1 found
Loading history...
12
        return new self('Template file missing: ' . $file);
13
    }
14
}
15