Added the possibility to add the value in the exception message

This commit is contained in:
Christophe Coevoet 2011-02-15 15:08:32 +01:00 committed by Fabien Potencier
parent 6b4538a1c4
commit 27e2ec139d

View File

@ -157,13 +157,15 @@ class ExprBuilder
/**
* Sets a closure marking the value as invalid at validation time.
*
* if you want to add the value of the node in your message just use a %s placeholder.
*
* @param string $message
*
* @return Symfony\Component\DependencyInjection\Configuration\Builder\ExprBuilder
*/
public function thenInvalid($message)
{
$this->thenPart = function ($v) use ($message) {throw new \InvalidArgumentException($message); };
$this->thenPart = function ($v) use ($message) {throw new \InvalidArgumentException(sprintf($message, $v)); };
return $this;
}