Skip to content

Commit

Permalink
fixed codeStyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Usik2203 committed Jan 29, 2020
1 parent ad184d2 commit 6e2d0c8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/code/Magento/Sales/Block/Status/Grid/Column/State.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ public function decorateState($value, $row, $column, $isExport)
{
$states = $this->_config->getStates();
if (isset($states[$value])) {
return sprintf("%s[%s]",
return sprintf(
"%s[%s]",
$value,
$states[$value]);
$states[$value]
);
}

return $value;
Expand Down

0 comments on commit 6e2d0c8

Please sign in to comment.