Skip to content

Commit

Permalink
[Validator] added a Metadata factory that can be used with ValidatorI…
Browse files Browse the repository at this point in the history
…nterface::validateValue()
  • Loading branch information
fabpot committed Mar 31, 2011
1 parent e21591e commit 16a98cf
Showing 1 changed file with 25 additions and 0 deletions.
@@ -0,0 +1,25 @@
<?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;

/**
* Simple implementation of ClassMetadataFactoryInterface that can be used when using ValidatorInterface::validateValue().
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class BlackholeMetadataFactory implements ClassMetadataFactoryInterface
{
public function getClassMetadata($class)
{
throw new \LogicException('BlackholeClassMetadataFactory only works with ValidatorInterface::validateValue().');
}
}

0 comments on commit 16a98cf

Please sign in to comment.