Skip to content

Commit 775d869

Browse files
Merge pull request #7979 from magento-cia/cia-2.4.6-develop-bugfixes-11102022
Cia 2.4.6 develop bugfixes 11102022
2 parents 22ecbcc + f196f13 commit 775d869

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Group extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractR
1717
/**
1818
* @inheritDoc
1919
*/
20-
public function render(DataObject $row): ?string
20+
public function render(DataObject $row)
2121
{
2222
if (!$row->getData($this->getColumn()->getIndex())) {
2323
return null;

app/code/Magento/Store/Model/Group.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,9 @@ protected function _construct()
176176
}
177177

178178
/**
179-
* Validation rules for store
180-
*
181-
* @return \Zend_Validate_Interface|null
182-
* @throws \Zend_Validate_Exception
179+
* @inheritdoc
183180
*/
184-
protected function _getValidationRulesBeforeSave(): ?\Zend_Validate_Interface
181+
protected function _getValidationRulesBeforeSave()
185182
{
186183
return $this->modelValidator;
187184
}

0 commit comments

Comments
 (0)