| Total Complexity | 7 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ViewException extends FrameworkException |
||
| 15 | { |
||
| 16 | public static function invalidCellMethod(string $class, string $method) |
||
| 17 | { |
||
| 18 | return new static(lang('View.invalidCellMethod', ['class' => $class, 'method' => $method])); |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function missingCellParameters(string $class, string $method) |
||
| 22 | { |
||
| 23 | return new static(lang('View.missingCellParameters', ['class' => $class, 'method' => $method])); |
||
| 24 | } |
||
| 25 | |||
| 26 | public static function invalidCellParameter(string $key) |
||
| 29 | } |
||
| 30 | |||
| 31 | public static function noCellClass() |
||
| 34 | } |
||
| 35 | |||
| 36 | public static function invalidCellClass(?string $class = null) |
||
| 37 | { |
||
| 38 | return new static(lang('View.invalidCellClass', [$class])); |
||
| 39 | } |
||
| 40 | |||
| 41 | public static function tagSyntaxError(string $output) |
||
| 44 | } |
||
| 45 | |||
| 46 | public static function invalidDecorator(string $className) |
||
| 51 |