|
16 | 16 | use function array_unshift; |
17 | 17 | use function call_user_func_array; |
18 | 18 | use function end; |
19 | | -use function enum_exists; |
20 | | -use function function_exists; |
21 | | -use function get_class; |
22 | 19 | use function is_object; |
23 | 20 | use function is_resource; |
24 | 21 | use function is_string; |
|
116 | 113 | * @method static void keyExists(array $array, string|int $key, string $message = '', string $exception = '') |
117 | 114 | * @method static void keyNotExists(array $array, string|int $key, string $message = '', string $exception = '') |
118 | 115 | * @method static void validArrayKey($value, string $message = '', string $exception = '') |
119 | | - * @method static void count(Countable|array $array, int $number, string $message = '', string $exception = '') |
120 | | - * @method static void minCount(Countable|array $array, int|float $min, string $message = '', string $exception = '') |
121 | | - * @method static void maxCount(Countable|array $array, int|float $max, string $message = '', string $exception = '') |
122 | | - * @method static void countBetween(Countable|array $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
| 116 | + * @method static void count(\Countable|array $array, int $number, string $message = '', string $exception = '') |
| 117 | + * @method static void minCount(\Countable|array $array, int|float $min, string $message = '', string $exception = '') |
| 118 | + * @method static void maxCount(\Countable|array $array, int|float $max, string $message = '', string $exception = '') |
| 119 | + * @method static void countBetween(\Countable|array $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
123 | 120 | * @method static void isList(mixed $array, string $message = '', string $exception = '') |
124 | 121 | * @method static void isNonEmptyList(mixed $array, string $message = '', string $exception = '') |
125 | 122 | * @method static void isMap(mixed $array, string $message = '', string $exception = '') |
126 | 123 | * @method static void isNonEmptyMap(mixed $array, string $message = '', string $exception = '') |
127 | 124 | * @method static void uuid(string $value, string $message = '', string $exception = '') |
128 | | - * @method static void throws(Closure $expression, string $class = 'Exception', string $message = '', string $exception = '') |
| 125 | + * @method static void throws(\Closure $expression, string $class = 'Exception', string $message = '', string $exception = '') |
129 | 126 | * |
130 | 127 | * @method static void nullOrString(mixed $value, string $message = '', string $exception = '') |
131 | 128 | * @method static void allString(mixed $value, string $message = '', string $exception = '') |
|
291 | 288 | * @method static void allKeyNotExists(array $array, string|int $key, string $message = '', string $exception = '') |
292 | 289 | * @method static void nullOrValidArrayKey(mixed $value, string $message = '', string $exception = '') |
293 | 290 | * @method static void allValidArrayKey(mixed $value, string $message = '', string $exception = '') |
294 | | - * @method static void nullOrCount(Countable|array|null $array, int $number, string $message = '', string $exception = '') |
| 291 | + * @method static void nullOrCount(\Countable|array|null $array, int $number, string $message = '', string $exception = '') |
295 | 292 | * @method static void allCount(array $array, int $number, string $message = '', string $exception = '') |
296 | | - * @method static void nullOrMinCount(Countable|array|null $array, int|float $min, string $message = '', string $exception = '') |
| 293 | + * @method static void nullOrMinCount(\Countable|array|null $array, int|float $min, string $message = '', string $exception = '') |
297 | 294 | * @method static void allMinCount(array $array, int|float $min, string $message = '', string $exception = '') |
298 | | - * @method static void nullOrMaxCount(Countable|array|null $array, int|float $max, string $message = '', string $exception = '') |
| 295 | + * @method static void nullOrMaxCount(\Countable|array|null $array, int|float $max, string $message = '', string $exception = '') |
299 | 296 | * @method static void allMaxCount(array $array, int|float $max, string $message = '', string $exception = '') |
300 | | - * @method static void nullOrCountBetween(Countable|array|null $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
| 297 | + * @method static void nullOrCountBetween(\Countable|array|null $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
301 | 298 | * @method static void allCountBetween(array $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
302 | 299 | * @method static void nullOrIsList(mixed $array, string $message = '', string $exception = '') |
303 | 300 | * @method static void allIsList(mixed $array, string $message = '', string $exception = '') |
|
309 | 306 | * @method static void allIsNonEmptyMap(mixed $array, string $message = '', string $exception = '') |
310 | 307 | * @method static void nullOrUuid(string|null $value, string $message = '', string $exception = '') |
311 | 308 | * @method static void allUuid(string[] $value, string $message = '', string $exception = '') |
312 | | - * @method static void nullOrThrows(Closure|null $expression, string $class, string $message = '', string $exception = '') |
313 | | - * @method static void allThrows(Closure[] $expression, string $class, string $message = '', string $exception = '') |
| 309 | + * @method static void nullOrThrows(\Closure|null $expression, string $class, string $message = '', string $exception = '') |
| 310 | + * @method static void allThrows(\Closure[] $expression, string $class, string $message = '', string $exception = '') |
314 | 311 | * |
315 | 312 | * @method static void validBase64(mixed $value, string $message = '', string $exception = '') |
316 | 313 | * @method static void notInArray(mixed $value, array $values, string $message = '', string $exception = '') |
|
0 commit comments