|
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 validInteger(mixed $value, string $message = '', string $exception = '') |
26 | 27 | * @method static void validLang(mixed $value, string $message = '', string $exception = '') |
27 | 28 | * @method static void validMonth(mixed $value, string $message = '', string $exception = '') |
28 | 29 | * @method static void validName(mixed $value, string $message = '', string $exception = '') |
|
49 | 50 | * @method static void nullOrValidID(mixed $value, string $message = '', string $exception = '') |
50 | 51 | * @method static void nullOrValidIDRef(mixed $value, string $message = '', string $exception = '') |
51 | 52 | * @method static void nullOrValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 53 | + * @method static void nullOrValidInteger(mixed $value, string $message = '', string $exception = '') |
52 | 54 | * @method static void nullOrValidLang(mixed $value, string $message = '', string $exception = '') |
53 | 55 | * @method static void nullOrValidMonth(mixed $value, string $message = '', string $exception = '') |
54 | 56 | * @method static void nullOrValidName(mixed $value, string $message = '', string $exception = '') |
|
75 | 77 | * @method static void allValidID(mixed $value, string $message = '', string $exception = '') |
76 | 78 | * @method static void allValidIDRef(mixed $value, string $message = '', string $exception = '') |
77 | 79 | * @method static void allValidIDRefs(mixed $value, string $message = '', string $exception = '') |
| 80 | + * @method static void allValidInteger(mixed $value, string $message = '', string $exception = '') |
78 | 81 | * @method static void allValidLang(mixed $value, string $message = '', string $exception = '') |
79 | 82 | * @method static void allValidMonth(mixed $value, string $message = '', string $exception = '') |
80 | 83 | * @method static void allValidName(mixed $value, string $message = '', string $exception = '') |
@@ -104,6 +107,7 @@ class Assert extends BaseAssert |
104 | 107 | use IDTrait; |
105 | 108 | use IDRefTrait; |
106 | 109 | use IDRefsTrait; |
| 110 | + use IntegerTrait; |
107 | 111 | use LangTrait; |
108 | 112 | use MonthTrait; |
109 | 113 | use NameTrait; |
|
0 commit comments