This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Mapping/BlackholeMetadataFactory.php
Jakub Zalas 8fd3256248 [Validator] Replaced inexistent interface.
ClassMetadataFactoryInterface was removed in 2.3 and replaced with MetadataFactoryInterface.
2013-11-28 00:06:02 +00:00

39 lines
918 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Validator\Mapping;
use Symfony\Component\Validator\MetadataFactoryInterface;
/**
* Simple implementation of MetadataFactoryInterface that can be used when using ValidatorInterface::validateValue().
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class BlackholeMetadataFactory implements MetadataFactoryInterface
{
/**
* @inheritdoc
*/
public function getMetadataFor($value)
{
throw new \LogicException('BlackholeClassMetadataFactory only works with ValidatorInterface::validateValue().');
}
/**
* @inheritdoc
*/
public function hasMetadataFor($value)
{
return false;
}
}