|
25 | 25 | * @method static void validIDRefs(mixed $value, string $message = '', string $exception = '') |
26 | 26 | * @method static void validInteger(mixed $value, string $message = '', string $exception = '') |
27 | 27 | * @method static void validLang(mixed $value, string $message = '', string $exception = '') |
| 28 | + * @method static void validLong(mixed $value, string $message = '', string $exception = '') |
28 | 29 | * @method static void validMonth(mixed $value, string $message = '', string $exception = '') |
29 | 30 | * @method static void validName(mixed $value, string $message = '', string $exception = '') |
30 | 31 | * @method static void validNCName(mixed $value, string $message = '', string $exception = '') |
|
56 | 57 | * @method static void nullOrValidIDRefs(mixed $value, string $message = '', string $exception = '') |
57 | 58 | * @method static void nullOrValidInteger(mixed $value, string $message = '', string $exception = '') |
58 | 59 | * @method static void nullOrValidLang(mixed $value, string $message = '', string $exception = '') |
| 60 | + * @method static void nullOrValidLong(mixed $value, string $message = '', string $exception = '') |
59 | 61 | * @method static void nullOrValidMonth(mixed $value, string $message = '', string $exception = '') |
60 | 62 | * @method static void nullOrValidName(mixed $value, string $message = '', string $exception = '') |
61 | 63 | * @method static void nullOrValidNCName(mixed $value, string $message = '', string $exception = '') |
|
87 | 89 | * @method static void allValidIDRefs(mixed $value, string $message = '', string $exception = '') |
88 | 90 | * @method static void allValidInteger(mixed $value, string $message = '', string $exception = '') |
89 | 91 | * @method static void allValidLang(mixed $value, string $message = '', string $exception = '') |
| 92 | + * @method static void allValidLong(mixed $value, string $message = '', string $exception = '') |
90 | 93 | * @method static void allValidMonth(mixed $value, string $message = '', string $exception = '') |
91 | 94 | * @method static void allValidName(mixed $value, string $message = '', string $exception = '') |
92 | 95 | * @method static void allValidNCName(mixed $value, string $message = '', string $exception = '') |
@@ -121,6 +124,7 @@ class Assert extends BaseAssert |
121 | 124 | use IDRefsTrait; |
122 | 125 | use IntegerTrait; |
123 | 126 | use LangTrait; |
| 127 | + use LongTrait; |
124 | 128 | use MonthTrait; |
125 | 129 | use NameTrait; |
126 | 130 | use NCNameTrait; |
|
0 commit comments