Skip to content

Commit 6e2d0c8

Browse files
committed
fixed codeStyle issues
1 parent ad184d2 commit 6e2d0c8

File tree

1 file changed

+4
-2
lines changed
  • app/code/Magento/Sales/Block/Status/Grid/Column

1 file changed

+4
-2
lines changed

app/code/Magento/Sales/Block/Status/Grid/Column/State.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ public function decorateState($value, $row, $column, $isExport)
5757
{
5858
$states = $this->_config->getStates();
5959
if (isset($states[$value])) {
60-
return sprintf("%s[%s]",
60+
return sprintf(
61+
"%s[%s]",
6162
$value,
62-
$states[$value]);
63+
$states[$value]
64+
);
6365
}
6466

6567
return $value;

0 commit comments

Comments
 (0)