Skip to content

Commit 18183e6

Browse files
committed
PSR-2 fix
1 parent d4f82ca commit 18183e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Message/AbstractRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ public function getSignature(array $data)
9292
$string = '';
9393

9494
foreach ($data as $value) {
95-
if (is_array($value))
95+
if (is_array($value)) {
9696
foreach ($value as $v) {
9797
$v = iconv('utf-8', 'windows-1251', $v);
9898
$string .= $v;
9999
}
100-
else {
100+
} else {
101101
$value = iconv('utf-8', 'windows-1251', $value);
102102
$string .= $value;
103103
}

0 commit comments

Comments
 (0)