Skip to content

Commit

Permalink
Fix error during compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwi-commerce authored Jul 2, 2018
1 parent 598bd28 commit 179ede4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Ui/Component/Listing/Column/ItemColumn.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class ItemColumn extends Column
/**
* ItemColumn constructor.
* @param \Magento\Framework\View\Element\UiComponent\ContextInterface $context
* @param \Magento\Framework\View\Element\Context $contexts
* @param \Magento\Framework\View\Element\UiComponentFactory $uiComponentFactory
* @param \Magento\Framework\Escaper $escaper
* @param \Magento\Backend\Model\UrlInterface $backendUrl
* @param array $components
* @param array $data
Expand All @@ -68,12 +68,11 @@ public function __construct(
\Magento\Framework\View\Element\UiComponent\ContextInterface $context,
\Magento\Framework\View\Element\Context $contexts,
\Magento\Framework\View\Element\UiComponentFactory $uiComponentFactory,
\Magento\Framework\Escaper $escaper,
\Magento\Backend\Model\UrlInterface $backendUrl,
array $components,
array $data
) {
$this->escaper = $escaper;
$this->escaper = $contexts->getEscaper();
$this->backendUrl = $backendUrl;
$this->filterManager = $contexts->getFilterManager();
parent::__construct($context, $uiComponentFactory, $components, $data);
Expand Down

0 comments on commit 179ede4

Please sign in to comment.