소스 검색

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