| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 94.44% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | trait AssertDocumentDividerTrait |
||
| 25 | { |
||
| 26 | use AssertOneOfTrait; |
||
| 27 | use ValueToStringTrait; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Check value is a valid document divider |
||
| 31 | */ |
||
| 32 | 8 | public static function assertDocumentDivider(int $value, string $message = ''): void |
|
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Return document dividers array |
||
| 43 | */ |
||
| 44 | 8 | private static function getDocumentDividers(): array |
|
| 65 |