|
23 | 23 | * @method static void validID(mixed $value, string $message = '', string $exception = '') |
24 | 24 | * @method static void validIDRef(mixed $value, string $message = '', string $exception = '') |
25 | 25 | * @method static void validIDRefs(mixed $value, string $message = '', string $exception = '') |
| 26 | + * @method static void validInt(mixed $value, string $message = '', string $exception = '') |
26 | 27 | * @method static void validInteger(mixed $value, string $message = '', string $exception = '') |
27 | 28 | * @method static void validLang(mixed $value, string $message = '', string $exception = '') |
28 | 29 | * @method static void validLong(mixed $value, string $message = '', string $exception = '') |
|
55 | 56 | * @method static void nullOrValidID(mixed $value, string $message = '', string $exception = '') |
56 | 57 | * @method static void nullOrValidIDRef(mixed $value, string $message = '', string $exception = '') |
57 | 58 | * @method static void nullOrValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 59 | + * @method static void nullOrValidInt(mixed $value, string $message = '', string $exception = '') |
58 | 60 | * @method static void nullOrValidInteger(mixed $value, string $message = '', string $exception = '') |
59 | 61 | * @method static void nullOrValidLang(mixed $value, string $message = '', string $exception = '') |
60 | 62 | * @method static void nullOrValidLong(mixed $value, string $message = '', string $exception = '') |
|
87 | 89 | * @method static void allValidID(mixed $value, string $message = '', string $exception = '') |
88 | 90 | * @method static void allValidIDRef(mixed $value, string $message = '', string $exception = '') |
89 | 91 | * @method static void allValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 92 | + * @method static void allValidInt(mixed $value, string $message = '', string $exception = '') |
90 | 93 | * @method static void allValidInteger(mixed $value, string $message = '', string $exception = '') |
91 | 94 | * @method static void allValidLang(mixed $value, string $message = '', string $exception = '') |
92 | 95 | * @method static void allValidLong(mixed $value, string $message = '', string $exception = '') |
@@ -122,6 +125,7 @@ class Assert extends BaseAssert |
122 | 125 | use IDTrait; |
123 | 126 | use IDRefTrait; |
124 | 127 | use IDRefsTrait; |
| 128 | + use IntTrait; |
125 | 129 | use IntegerTrait; |
126 | 130 | use LangTrait; |
127 | 131 | use LongTrait; |
|
0 commit comments