|
30 | 30 | * @method static void validNCName(mixed $value, string $message = '', string $exception = '') |
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 | + * @method static void validNegativeInteger(mixed $value, string $message = '', string $exception = '') |
33 | 34 | * @method static void validNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
34 | 35 | * @method static void validNormalizedString(mixed $value, string $message = '', string $exception = '') |
35 | 36 | * @method static void validQName(mixed $value, string $message = '', string $exception = '') |
|
58 | 59 | * @method static void nullOrValidNCName(mixed $value, string $message = '', string $exception = '') |
59 | 60 | * @method static void nullOrValidNMToken(mixed $value, string $message = '', string $exception = '') |
60 | 61 | * @method static void nullOrValidNMTokens(mixed $value, string $message = '', string $exception = '') |
| 62 | + * @method static void nullOrValidNegativeInteger(mixed $value, string $message = '', string $exception = '') |
61 | 63 | * @method static void nullOrValidNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
62 | 64 | * @method static void nullOrValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
63 | 65 | * @method static void nullOrValidQName(mixed $value, string $message = '', string $exception = '') |
|
86 | 88 | * @method static void allValidNCName(mixed $value, string $message = '', string $exception = '') |
87 | 89 | * @method static void allValidNMToken(mixed $value, string $message = '', string $exception = '') |
88 | 90 | * @method static void allValidNMTokens(mixed $value, string $message = '', string $exception = '') |
| 91 | + * @method static void allValidNegativeInteger(mixed $value, string $message = '', string $exception = '') |
89 | 92 | * @method static void allValidNonPositiveInteger(mixed $value, string $message = '', string $exception = '') |
90 | 93 | * @method static void allValidNormalizedString(mixed $value, string $message = '', string $exception = '') |
91 | 94 | * @method static void allValidQName(mixed $value, string $message = '', string $exception = '') |
@@ -117,6 +120,7 @@ class Assert extends BaseAssert |
117 | 120 | use NCNameTrait; |
118 | 121 | use NMTokenTrait; |
119 | 122 | use NMTokensTrait; |
| 123 | + use NegativeIntegerTrait; |
120 | 124 | use NonPositiveIntegerTrait; |
121 | 125 | use NormalizedStringTrait; |
122 | 126 | use QNameTrait; |
|
0 commit comments