From 45d7ddc6b93ed704e65e1fc5279ef494fc1b4ca0 Mon Sep 17 00:00:00 2001
From: Igor Melnikov <imelnikov@magento.com>
Date: Thu, 27 Oct 2016 17:22:53 -0500
Subject: [PATCH] MAGETWO-59440: Refactor Module_Eav

Introducing SerializerInterface
---
 app/code/Magento/Eav/Model/Config.php                           | 1 +
 .../Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app/code/Magento/Eav/Model/Config.php b/app/code/Magento/Eav/Model/Config.php
index 89d0bc93c80..0d0237a1f67 100644
--- a/app/code/Magento/Eav/Model/Config.php
+++ b/app/code/Magento/Eav/Model/Config.php
@@ -105,6 +105,7 @@ class Config
      * @param \Magento\Eav\Model\ResourceModel\Entity\Type\CollectionFactory $entityTypeCollectionFactory
      * @param \Magento\Framework\App\Cache\StateInterface $cacheState
      * @param \Magento\Framework\Validator\UniversalFactory $universalFactory
+     * @param SerializerInterface $serializer
      * @codeCoverageIgnore
      */
     public function __construct(
diff --git a/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php b/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php
index 3452d452ac4..56bad8bf75e 100644
--- a/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php
+++ b/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php
@@ -47,7 +47,7 @@ class Attribute
     ) {
         $this->cache = $cache;
         $this->serializer = $serializer;
-        $this->cacheState = $cacheState;;
+        $this->cacheState = $cacheState;
     }
 
     /**
-- 
GitLab