|
53 | 53 | * @method static void isInstanceOfAny(mixed $value, array<object|class-string> $classes, string $message = '', string $exception = '') |
54 | 54 | * @method static void isAOf(string|object $value, string $class, string $message = '', string $exception = '') |
55 | 55 | * @method static void isNotA(string|object $value, string $class, string $message = '', string $exception = '') |
56 | | - * @method static void isAnyOf(string|object $value, string[] $classes, string $message = '', string $exception = '') |
| 56 | + * @method static void isAnyOf(class-string|object $value, string[] $classes, string $message = '', string $exception = '') |
57 | 57 | * @method static void isEmpty(mixed $value, string $message = '', string $exception = '') |
58 | 58 | * @method static void notEmpty(mixed $value, string $message = '', string $exception = '') |
59 | 59 | * @method static void null(mixed $value, string $message = '', string $exception = '') |
|
169 | 169 | * @method static void nullOrIsAOf(object|string|null $value, string $class, string $message = '', string $exception = '') |
170 | 170 | * @method static void allIsAOf(object|string|null $value, string $class, string $message = '', string $exception = '') |
171 | 171 | * @method static void nullOrIsNotA(object|string|null $value, string $class, string $message = '', string $exception = '') |
172 | | - * @method static void allIsNotA(\Iterable<object|string> $value, string $class, string $message = '', string $exception = '') |
173 | | - * @method static void nullOrIsAnyOf(object|string|null $value, string[] $classes, string $message = '', string $exception = '') |
174 | | - * @method static void allIsAnyOf(\Iterable<object|string $value, string[] $classes, string $message = '', string $exception = '') |
| 172 | + * @method static void allIsNotA(iterable<object|string> $value, string $class, string $message = '', string $exception = '') |
| 173 | + * @method static void nullOrIsAnyOf(object|class-string|null $value, string[] $classes, string $message = '', string $exception = '') |
| 174 | + * @method static void allIsAnyOf(iterable<object|class-string> $value, string[] $classes, string $message = '', string $exception = '') |
175 | 175 | * @method static void nullOrIsEmpty(mixed $value, string $message = '', string $exception = '') |
176 | 176 | * @method static void allIsEmpty(mixed $value, string $message = '', string $exception = '') |
177 | 177 | * @method static void nullOrNotEmpty(mixed $value, string $message = '', string $exception = '') |
|
193 | 193 | * @method static void nullOrEmail(mixed $value, string $message = '', string $exception = '') |
194 | 194 | * @method static void allEmail(mixed $value, string $message = '', string $exception = '') |
195 | 195 | * @method static void nullOrUniqueValues(array<mixed>|null $values, string $message = '', string $exception = '') |
196 | | - * @method static void allUniqueValues(\Iterable<array> $values, string $message = '', string $exception = '') |
| 196 | + * @method static void allUniqueValues(iterable<array<mixed>> $values, string $message = '', string $exception = '') |
197 | 197 | * @method static void nullOrEq(mixed $value, mixed $expect, string $message = '', string $exception = '') |
198 | 198 | * @method static void allEq(mixed $value, mixed $expect, string $message = '', string $exception = '') |
199 | 199 | * @method static void nullOrNotEq(mixed $value, mixed $expect, string $message = '', string $exception = '') |
|
275 | 275 | * @method static void nullOrImplementsInterface(mixed $value, mixed $interface, string $message = '', string $exception = '') |
276 | 276 | * @method static void allImplementsInterface(mixed $value, mixed $interface, string $message = '', string $exception = '') |
277 | 277 | * @method static void nullOrPropertyExists(string|object|null $classOrObject, mixed $property, string $message = '', string $exception = '') |
278 | | - * @method static void allPropertyExists(\Iterable<class-string|object> $classOrObject, mixed $property, string $message = '', string $exception = '') |
| 278 | + * @method static void allPropertyExists(iterable<class-string|object> $classOrObject, mixed $property, string $message = '', string $exception = '') |
279 | 279 | * @method static void nullOrPropertyNotExists(string|object|null $classOrObject, mixed $property, string $message = '', string $exception = '') |
280 | | - * @method static void allPropertyNotExists(\Iterable<class-string|object> $classOrObject, mixed $property, string $message = '', string $exception = '') |
| 280 | + * @method static void allPropertyNotExists(iterable<class-string|object> $classOrObject, mixed $property, string $message = '', string $exception = '') |
281 | 281 | * @method static void nullOrMethodExists(string|object|null $classOrObject, mixed $method, string $message = '', string $exception = '') |
282 | | - * @method static void allMethodExists(\Iterable<class-string|object> $classOrObject, mixed $method, string $message = '', string $exception = '') |
| 282 | + * @method static void allMethodExists(iterable<class-string|object> $classOrObject, mixed $method, string $message = '', string $exception = '') |
283 | 283 | * @method static void nullOrMethodNotExists(string|object|null $classOrObject, mixed $method, string $message = '', string $exception = '') |
284 | | - * @method static void allMethodNotExists(\Iterable<class-string|object> $classOrObject, mixed $method, string $message = '', string $exception = '') |
| 284 | + * @method static void allMethodNotExists(iterable<class-string|object> $classOrObject, mixed $method, string $message = '', string $exception = '') |
285 | 285 | * @method static void nullOrKeyExists(array<mixed>|null $array, string|int $key, string $message = '', string $exception = '') |
286 | | - * @method static void allKeyExists(\Iterable<array> $array, string|int $key, string $message = '', string $exception = '') |
| 286 | + * @method static void allKeyExists(iterable<array<mixed>> $array, string|int $key, string $message = '', string $exception = '') |
287 | 287 | * @method static void nullOrKeyNotExists(array<mixed>|null $array, string|int $key, string $message = '', string $exception = '') |
288 | | - * @method static void allKeyNotExists(\Iterable<array> $array, string|int $key, string $message = '', string $exception = '') |
| 288 | + * @method static void allKeyNotExists(iterable<array<mixed>> $array, string|int $key, string $message = '', string $exception = '') |
289 | 289 | * @method static void nullOrValidArrayKey(mixed $value, string $message = '', string $exception = '') |
290 | 290 | * @method static void allValidArrayKey(mixed $value, string $message = '', string $exception = '') |
291 | 291 | * @method static void nullOrCount(\Countable|array<mixed>|null $array, int $number, string $message = '', string $exception = '') |
292 | | - * @method static void allCount(\Iterable<\Countable|array> $array, int $number, string $message = '', string $exception = '') |
| 292 | + * @method static void allCount(iterable<\Countable|array<mixed>> $array, int $number, string $message = '', string $exception = '') |
293 | 293 | * @method static void nullOrMinCount(\Countable|array<mixed>|null $array, int|float $min, string $message = '', string $exception = '') |
294 | | - * @method static void allMinCount(\Iterable<\Countable|array> $array, int|float $min, string $message = '', string $exception = '') |
| 294 | + * @method static void allMinCount(iterable<\Countable|array<mixed>> $array, int|float $min, string $message = '', string $exception = '') |
295 | 295 | * @method static void nullOrMaxCount(\Countable|array<mixed>|null $array, int|float $max, string $message = '', string $exception = '') |
296 | | - * @method static void allMaxCount(\Iterable<\Countable|array> $array, int|float $max, string $message = '', string $exception = '') |
| 296 | + * @method static void allMaxCount(iterable<\Countable|array<mixed>> $array, int|float $max, string $message = '', string $exception = '') |
297 | 297 | * @method static void nullOrCountBetween(\Countable|array<mixed>|null $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
298 | | - * @method static void allCountBetween(\Iterable<\Countable|array> $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
| 298 | + * @method static void allCountBetween(iterable<\Countable|array<mixed>> $array, int|float $min, int|float $max, string $message = '', string $exception = '') |
299 | 299 | * @method static void nullOrIsList(mixed $array, string $message = '', string $exception = '') |
300 | 300 | * @method static void allIsList(mixed $array, string $message = '', string $exception = '') |
301 | 301 | * @method static void nullOrIsNonEmptyList(mixed $array, string $message = '', string $exception = '') |
|
0 commit comments