File: /home/petsclubcc/magento/vendor/magento/module-eav/Model/Entity/Setup/PropertyMapperInterface.php
<?php
/**
* Attribute property mapper interface
*
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\Entity\Setup;
interface PropertyMapperInterface
{
/**
* Map input attribute properties to storage representation
*
* @param array $input
* @param int $entityTypeId
* @return array
*/
public function map(array $input, $entityTypeId);
}