[Validator] Converted `@deprecate` doc comment into regular doc comment

This commit is contained in:
Bernhard Schussek 2014-03-30 20:08:02 +02:00
parent 68d80187ed
commit ca6a722a45
1 changed files with 4 additions and 4 deletions

View File

@ -29,6 +29,10 @@ interface ValidatorInterface
* The accepted values depend on the {@link MetadataFactoryInterface}
* implementation.
*
* The signature changed with Symfony 2.5 (see
* {@link Validator\ValidatorInterface::validate()}. This signature will be
* disabled in Symfony 3.0.
*
* @param mixed $value The value to validate
* @param array|null $groups The validation groups to validate.
* @param Boolean $traverse Whether to traverse the value if it is traversable.
@ -38,10 +42,6 @@ interface ValidatorInterface
* list is empty, validation succeeded.
*
* @api
*
* @deprecated The signature changed with Symfony 2.5 (see
* {@link Validator\ValidatorInterface::validate()}. This
* signature will be disabled in Symfony 3.0.
*/
public function validate($value, $groups = null, $traverse = false, $deep = false);