We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d616d commit 5f2cf41Copy full SHA for 5f2cf41
app/code/Magento/Backend/Block/Widget/Tabs.php
@@ -238,7 +238,7 @@ protected function _beforeToHtml()
238
$this->_tabs = $this->reorderTabs();
239
240
if ($this->_activeTab === null) {
241
- /** @var $tab */
+ /** @var TabInterface $tab */
242
foreach ($this->_tabs as $tab) {
243
$this->_activeTab = $tab->getId();
244
break;
@@ -309,7 +309,7 @@ protected function reorderTabs()
309
310
$ordered = [];
311
312
313
foreach ($orderByPosition as $tab) {
314
$ordered[$tab->getId()] = $tab;
315
}
0 commit comments