Skip to content

Commit 9a2765d

Browse files
committed
Fix CS
1 parent d95fe9b commit 9a2765d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Omnipay/Common/Message/AbstractResponse.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,11 @@ public function getRedirectResponse()
9797
</form>
9898
</body>
9999
</html>';
100-
$output = sprintf($output, htmlentities($this->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false), $hiddenFields);
100+
$output = sprintf(
101+
$output,
102+
htmlentities($this->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false),
103+
$hiddenFields
104+
);
101105

102106
return HttpResponse::create($output);
103107
}

0 commit comments

Comments
 (0)