Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait Errors |
||
8 | { |
||
9 | public function hasError(ViewErrorBag $errors, $locale = null): bool |
||
20 | } |
||
21 | |||
22 | public function getErrors(ViewErrorBag $errors, $locale = null): array |
||
33 | } |
||
34 | |||
35 | abstract public function name(string $name = null); |
||
36 | abstract public function belongsToArray(): bool; |
||
37 | abstract public function getDotPatternName(): string; |
||
38 | } |
||
39 |