respect-validation/docs/rules/Sf.md

28 lines
589 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Sf
- `Sf(Constraint $constraint)`
- `Sf(Constraint $constraint, ValidatorInterface $validator)`
2015-01-30 09:40:06 +01:00
Validate the input with a Symfony Validator (>=4.0 or >=3.0) Constraint.
2015-01-30 09:40:06 +01:00
```php
use Symfony\Component\Validator\Constraint\Iban;
v::sf(new Iban())->validate('NL39 RABO 0300 0652 64'); // true
2015-01-30 09:40:06 +01:00
```
This rule will keep all the messages returned from Symfony.
## Changelog
Version | Description
--------|-------------
2.0.0 | Do not create constraints anymore
2.0.0 | Upgraded support to version >=4.0 or >=3.0 of Symfony Validator
0.3.9 | Created
2015-01-30 09:40:06 +01:00
***
2015-01-30 09:40:06 +01:00
See also:
- [Zend](Zend.md)