Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #205 from EmicoEcommerce/bug/issue-203
Browse files Browse the repository at this point in the history
Fix breaking change with regards to category item use statement
  • Loading branch information
Hnto authored Nov 16, 2021
2 parents bd381ab + 0694daf commit 24cf9f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Block/LayeredNavigation/RenderLayered/DefaultRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace Emico\Tweakwise\Block\LayeredNavigation\RenderLayered;

use Emico\Tweakwise\Model\Catalog\Layer\Filter;
use \Emico\Tweakwise\Model\Catalog\Layer\Filter\Item as CategoryItem;
use \Emico\Tweakwise\Model\Catalog\Layer\Filter\Item;
use Emico\Tweakwise\Model\Client\Type\FacetType\SettingsType;
use Emico\Tweakwise\Model\Config;
use Emico\Tweakwise\Model\NavigationConfig;
Expand Down Expand Up @@ -88,10 +88,10 @@ protected function getFacetSettings()
}

/**
* @param CategoryItem $item
* @param Item $item
* @return string
*/
public function getCategoryUrl(CategoryItem $item): string
public function getCategoryUrl(Item $item): string
{
$catUrl = $this->escapeUrl($item->getUrl());

Expand Down

0 comments on commit 24cf9f4

Please sign in to comment.