Skip to content

Commit b05ff2b

Browse files
committed
did code formating
1 parent fe68f61 commit b05ff2b

File tree

1 file changed

+3
-2
lines changed
  • app/code/Magento/Reports/Block/Adminhtml/Grid

1 file changed

+3
-2
lines changed

app/code/Magento/Reports/Block/Adminhtml/Grid/Column.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
67
namespace Magento\Reports\Block\Adminhtml\Grid;
78

89
use Magento\Backend\Block\Widget\Grid\Column as GridColumn;
@@ -25,7 +26,7 @@ public function getRowField(\Magento\Framework\DataObject $row)
2526
{
2627
$renderedValue = parent::getRowField($row);
2728

28-
if($row->getData('child_items_sku') != null) {
29+
if ($row->getData('child_items_sku') != null) {
2930
$renderedValue .= ' (' . $row->getData('child_items_sku') . ')';
3031
}
3132

@@ -42,7 +43,7 @@ public function getRowFieldExport(\Magento\Framework\DataObject $row)
4243
{
4344
$renderedValue = parent::getRowFieldExport($row);
4445

45-
if($row->getData('child_items_sku') != null) {
46+
if ($row->getData('child_items_sku') != null) {
4647
$renderedValue .= ' (' . $row->getData('child_items_sku') . ')';
4748
}
4849

0 commit comments

Comments
 (0)