Skip to content

Commit c6d02c1

Browse files
author
Oleksii Korshenko
authored
MAGETWO-69842: Fixes small backwards incompatibility issue created in MAGETWO-69728 #9922
2 parents e2feb2e + f8263ad commit c6d02c1

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 Serializer $serializer
7271
* @param StoreManagerInterface $storeManager
72+
* @param Serializer $serializer
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-
Serializer $serializer = null,
82-
StoreManagerInterface $storeManager = null
81+
StoreManagerInterface $storeManager = null,
82+
Serializer $serializer = null
8383
) {
8484
$this->_attrBooleanFactory = $attrBooleanFactory;
8585
$this->cache = $cache ?: ObjectManager::getInstance()->get(CacheInterface::class);

0 commit comments

Comments
 (0)