Skip to content

Commit 1ad7d45

Browse files
committed
Fix static test.
1 parent c1d0f31 commit 1ad7d45

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

app/code/Magento/Catalog/Block/Product/View/Details.php

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,27 @@
66

77
declare(strict_types=1);
88

9-
/**
10-
* Product details block
11-
* Holds a group of blocks to show as tabs
12-
*
13-
* @author Magento Core Team <core@magentocommerce.com>
14-
*/
15-
169
namespace Magento\Catalog\Block\Product\View;
1710

1811
/**
12+
* Product details block.
13+
*
14+
* Holds a group of blocks to show as tabs.
15+
*
1916
* @api
2017
*/
2118
class Details extends \Magento\Framework\View\Element\Template
2219
{
2320
/**
21+
* Get sorted child block names.
22+
*
2423
* @param string $groupName
25-
* @param $callback
24+
* @param string $callback
2625
* @throws \Magento\Framework\Exception\LocalizedException
2726
*
2827
* @return array
2928
*/
30-
public function getGroupSortedChildNames(string $groupName, $callback): array
29+
public function getGroupSortedChildNames(string $groupName, string $callback): array
3130
{
3231
$groupChildNames = $this->getGroupChildNames($groupName, $callback);
3332
$layout = $this->getLayout();

0 commit comments

Comments
 (0)