浏览代码

Added the possibility to add the value in the exception message

Christophe Coevoet 14 年之前
父节点
当前提交
27e2ec139d
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/Symfony/Component/DependencyInjection/Configuration/Builder/ExprBuilder.php

+ 3 - 1
src/Symfony/Component/DependencyInjection/Configuration/Builder/ExprBuilder.php

@@ -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;
     }