Skip to content

Commit 58b4c7c

Browse files
committed
MAGETWO-69728: Fixes layered navigation options being cached using the wrong store id. #9873
- Backwards compatibility improvements
1 parent bd65ced commit 58b4c7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ abstract class AbstractFrontend implements \Magento\Eav\Model\Entity\Attribute\F
6868
* @param CacheInterface $cache
6969
* @param $storeResolver @deprecated
7070
* @param array $cacheTags
71-
* @param StoreManagerInterface $storeManager
7271
* @param Serializer $serializer
72+
* @param StoreManagerInterface $storeManager
7373
* @codeCoverageIgnore
7474
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
7575
*/
@@ -78,8 +78,8 @@ public function __construct(
7878
CacheInterface $cache = null,
7979
$storeResolver = null,
8080
array $cacheTags = null,
81-
StoreManagerInterface $storeManager = null,
82-
Serializer $serializer = null
81+
Serializer $serializer = null,
82+
StoreManagerInterface $storeManager = null
8383
) {
8484
$this->_attrBooleanFactory = $attrBooleanFactory;
8585
$this->cache = $cache ?: ObjectManager::getInstance()->get(CacheInterface::class);

0 commit comments

Comments
 (0)