respect-validation/docs/rules/Subset.md
2018-12-11 13:31:50 +01:00

22 lines
354 B
Markdown

# 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
```
## Changelog
Version | Description
--------|-------------
2.0.0 | Created
***
See also:
- [ArrayType](ArrayType.md)
- [ArrayVal](ArrayVal.md)