Skip to content

Commit 4402714

Browse files
authored
Fix order of parameters
1 parent c62ab93 commit 4402714

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column

1 file changed

+2
-2
lines changed

app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class Cart extends \Magento\Wishlist\Block\Customer\Wishlist\Item\Column
2828
public function __construct(
2929
\Magento\Catalog\Block\Product\Context $context,
3030
\Magento\Framework\App\Http\Context $httpContext,
31-
\Magento\Catalog\Block\Product\View $productView = null,
32-
array $data = []
31+
array $data = [],
32+
\Magento\Catalog\Block\Product\View $productView = null
3333
) {
3434
$this->productView = $productView ?:
3535
\Magento\Framework\App\ObjectManager::getInstance()->get(\Magento\Catalog\Block\Product\View::class);

0 commit comments

Comments
 (0)