Skip to content

Commit 19d6eef

Browse files
author
Cari Spruiell
committed
MAGETWO-49097: Staging. Shopping Cart Price Rules. Builds stabilization
- address SVC failures
1 parent fa4fc39 commit 19d6eef

File tree

1 file changed

+2
-7
lines changed
  • app/code/Magento/Backend/Helper/Dashboard

1 file changed

+2
-7
lines changed

app/code/Magento/Backend/Helper/Dashboard/Order.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,13 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard
2323
/**
2424
* @param \Magento\Framework\App\Helper\Context $context
2525
* @param \Magento\Reports\Model\ResourceModel\Order\Collection $orderCollection
26-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
2726
*/
2827
public function __construct(
2928
\Magento\Framework\App\Helper\Context $context,
30-
\Magento\Reports\Model\ResourceModel\Order\Collection $orderCollection,
31-
\Magento\Store\Model\StoreManagerInterface $storeManager
29+
\Magento\Reports\Model\ResourceModel\Order\Collection $orderCollection
3230
) {
3331
$this->_orderCollection = $orderCollection;
34-
$this->_storeManager = $storeManager;
35-
parent::__construct(
36-
$context
37-
);
32+
parent::__construct($context);
3833
}
3934

4035
/**

0 commit comments

Comments
 (0)