Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
amacneil committed Apr 11, 2014
1 parent d95fe9b commit 9a2765d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Omnipay/Common/Message/AbstractResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ public function getRedirectResponse()
</form>
</body>
</html>';
$output = sprintf($output, htmlentities($this->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false), $hiddenFields);
$output = sprintf(
$output,
htmlentities($this->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false),
$hiddenFields
);

return HttpResponse::create($output);
}
Expand Down

0 comments on commit 9a2765d

Please sign in to comment.