@@ -88,8 +88,8 @@ |
||
88 | 88 | * @throws \RuntimeException |
89 | 89 | */ |
90 | 90 | public function setTemplate(string $template): void { |
91 | - if(!is_file($template) OR !is_readable($template)) { |
|
92 | - throw new \RuntimeException("File $template does not exist or is not readable."); |
|
91 | + if(!is_file($template) or !is_readable($template)) { |
|
92 | + throw new \RuntimeException("file $template does not exist or is not readable."); |
|
93 | 93 | } |
94 | 94 | $this->template = $template; |
95 | 95 | } |