|
31 | 31 | * @method static void validNMToken(mixed $value, string $message = '', string $exception = '') |
32 | 32 | * @method static void validNMTokens(mixed $value, string $message = '', string $exception = '') |
33 | 33 | * @method static void validNegativeInteger(mixed $value, string $message = '', string $exception = '') |
| 34 | + * @method static void validNonNegativeInteger(mixed $value, string $message = '', string $exception = '') |
34 | 35 | * @method static void validNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
35 | 36 | * @method static void validNormalizedString(mixed $value, string $message = '', string $exception = '') |
36 | 37 | * @method static void validQName(mixed $value, string $message = '', string $exception = '') |
|
60 | 61 | * @method static void nullOrValidNMToken(mixed $value, string $message = '', string $exception = '') |
61 | 62 | * @method static void nullOrValidNMTokens(mixed $value, string $message = '', string $exception = '') |
62 | 63 | * @method static void nullOrValidNegativeInteger(mixed $value, string $message = '', string $exception = '') |
| 64 | + * @method static void nullOrValidNonNegativeInteger(mixed $value, string $message = '', string $exception = '') |
63 | 65 | * @method static void nullOrValidNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
64 | 66 | * @method static void nullOrValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
65 | 67 | * @method static void nullOrValidQName(mixed $value, string $message = '', string $exception = '') |
|
89 | 91 | * @method static void allValidNMToken(mixed $value, string $message = '', string $exception = '') |
90 | 92 | * @method static void allValidNMTokens(mixed $value, string $message = '', string $exception = '') |
91 | 93 | * @method static void allValidNegativeInteger(mixed $value, string $message = '', string $exception = '') |
| 94 | + * @method static void allValidNonNegativeInteger(mixed $value, string $message = '', string $exception = '') |
92 | 95 | * @method static void allValidNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
93 | 96 | * @method static void allValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
94 | 97 | * @method static void allValidQName(mixed $value, string $message = '', string $exception = '') |
@@ -121,6 +124,7 @@ class Assert extends BaseAssert |
121 | 124 | use NMTokenTrait; |
122 | 125 | use NMTokensTrait; |
123 | 126 | use NegativeIntegerTrait; |
| 127 | + use NonNegativeIntegerTrait; |
124 | 128 | use NonPositiveIntegerTrait; |
125 | 129 | use NormalizedStringTrait; |
126 | 130 | use QNameTrait; |
|
0 commit comments