[OptionsResolver] add missing deprecated phpdoc for setNormalizers

This commit is contained in:
Tobias Schultze 2015-03-01 03:08:17 +01:00
parent c9da1ae73f
commit e3e9a4d269

View File

@ -418,7 +418,18 @@ class OptionsResolver implements Options, OptionsResolverInterface
}
/**
* {@inheritdoc}
* Sets the normalizers for an array of options.
*
* @param array $normalizers An array of closures
*
* @return OptionsResolver This instance
*
* @throws UndefinedOptionsException If the option is undefined
* @throws AccessException If called from a lazy option or normalizer
*
* @see setNormalizer()
*
* @deprecated since version 2.6, to be removed in 3.0.
*/
public function setNormalizers(array $normalizers)
{