respect-validation/docs/rules/Subset.md

27 lines
383 B
Markdown
Raw Permalink Normal View History

# Subset
- `Subset(array $superset)`
Validates whether the input is a subset of a given value.
```php
v::subset([1, 2, 3])->validate([1, 2]); // true
v::subset([1, 2])->validate([1, 2, 3]); // false
```
## Categorization
- Arrays
## Changelog
Version | Description
--------|-------------
2.0.0 | Created
***
See also:
- [ArrayType](ArrayType.md)
2018-12-11 13:31:50 +01:00
- [ArrayVal](ArrayVal.md)