Skip to content

Commit 45d7ddc

Browse files
Igor Melnikovbuskamuza
authored andcommitted
MAGETWO-59440: Refactor Module_Eav
Introducing SerializerInterface
1 parent bf646df commit 45d7ddc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/code/Magento/Eav/Model/Config.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ class Config
105105
* @param \Magento\Eav\Model\ResourceModel\Entity\Type\CollectionFactory $entityTypeCollectionFactory
106106
* @param \Magento\Framework\App\Cache\StateInterface $cacheState
107107
* @param \Magento\Framework\Validator\UniversalFactory $universalFactory
108+
* @param SerializerInterface $serializer
108109
* @codeCoverageIgnore
109110
*/
110111
public function __construct(

app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(
4747
) {
4848
$this->cache = $cache;
4949
$this->serializer = $serializer;
50-
$this->cacheState = $cacheState;;
50+
$this->cacheState = $cacheState;
5151
}
5252

5353
/**

0 commit comments

Comments
 (0)