Skip to content

Commit d4a428c

Browse files
issei-mnicolas-grekas
authored andcommitted
[Config] Fix closure CS
1 parent 8f60418 commit d4a428c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Config/Definition/Builder/ExprBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public function thenEmptyArray()
161161
*/
162162
public function thenInvalid($message)
163163
{
164-
$this->thenPart = function ($v) use ($message) {throw new \InvalidArgumentException(sprintf($message, json_encode($v))); };
164+
$this->thenPart = function ($v) use ($message) { throw new \InvalidArgumentException(sprintf($message, json_encode($v))); };
165165

166166
return $this;
167167
}

0 commit comments

Comments
 (0)