| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class NonNegativeIntegerValue extends IntegerValue |
||
| 14 | { |
||
| 15 | /** @var string */ |
||
| 16 | public const SCHEMA_TYPE = 'nonNegativeInteger'; |
||
| 17 | |||
| 18 | |||
| 19 | /** |
||
| 20 | * Validate the value. |
||
| 21 | * |
||
| 22 | * @param string $value |
||
| 23 | * @throws \SimpleSAML\XML\Exception\SchemaViolationException on failure |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | protected function validateValue(string $value): void |
||
| 31 |