Skip to content

Commit ff630e1

Browse files
minor symfony#25608 [Config] Fix closure CS (issei-m)
This PR was submitted for the master branch but it was merged into the 2.7 branch instead (closes symfony#25608). Discussion ---------- [Config] Fix closure CS | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- d4a428c [Config] Fix closure CS
2 parents 8f60418 + d4a428c commit ff630e1

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)