mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
27 lines
510 B
Markdown
27 lines
510 B
Markdown
# Equals
|
|
|
|
- `Equals(mixed $compareTo)`
|
|
|
|
Validates if the input is equal to some value.
|
|
|
|
```php
|
|
v::equals('alganet')->validate('alganet'); // true
|
|
```
|
|
|
|
Message template for this validator includes `{{compareTo}}`.
|
|
|
|
## Changelog
|
|
|
|
Version | Description
|
|
--------|-------------
|
|
1.0.0 | Removed identical checking (see [Identical](Identical.md))
|
|
0.3.9 | Created
|
|
|
|
***
|
|
See also:
|
|
|
|
- [Contains](Contains.md)
|
|
- [Equivalent](Equivalent.md)
|
|
- [Identical](Identical.md)
|
|
- [KeyValue](KeyValue.md)
|
|
- [Version](Version.md)
|