[Validator] add missing interface use statement for phpdoc block return type.

This commit is contained in:
Hugo Hamon 2016-07-01 21:33:41 +02:00
parent 58c8b71320
commit 43dff0e8e6

View File

@ -11,7 +11,8 @@
namespace Symfony\Component\Validator\Mapping\Factory; namespace Symfony\Component\Validator\Mapping\Factory;
use Symfony\Component\Validator\Exception; use Symfony\Component\Validator\Exception\NoSuchMetadataException;
use Symfony\Component\Validator\Mapping\MetadataInterface;
/** /**
* Returns {@link \Symfony\Component\Validator\Mapping\MetadataInterface} instances for values. * Returns {@link \Symfony\Component\Validator\Mapping\MetadataInterface} instances for values.
@ -29,7 +30,7 @@ interface MetadataFactoryInterface
* *
* @return MetadataInterface The metadata for the value * @return MetadataInterface The metadata for the value
* *
* @throws Exception\NoSuchMetadataException If no metadata exists for the given value * @throws NoSuchMetadataException If no metadata exists for the given value
*/ */
public function getMetadataFor($value); public function getMetadataFor($value);