| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function __construct(string $path, array $locale, array $variables) |
||
| 40 | { |
||
| 41 | $this->locale = $locale; |
||
| 42 | $this->variables = $variables; |
||
| 43 | |||
| 44 | if (is_readable($path)) { |
||
| 45 | $this->template = $path; |
||
| 46 | } else { |
||
| 47 | throw new Exception\TemplateNotFound('template '.$path.' not found'); |
||
| 48 | } |
||
| 49 | } |
||
| 50 | |||
| 84 |