Your IP : 127.0.0.1
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\EntityManager;
/**
* Class CompositeMapper
*/
class CompositeMapper implements MapperInterface
{
/**
* @var MapperInterface[]
*/
private $mappers;
/**
* @param MapperInterface[] $mappers
*/
public function __construct(
$mappers
) {
$this->mappers = $mappers;
}
/**
* {@inheritdoc}
*/
public function entityToDatabase($entityType, $data)
{
foreach ($this->mappers as $mapper) {
$data = $mapper->entityToDatabase($entityType, $data);
}
return $data;
}
/**
* {@inheritdoc}
*/
public function databaseToEntity($entityType, $data)
{
foreach ($this->mappers as $mapper) {
$data = $mapper->databaseToEntity($entityType, $data);
}
return $data;
}
}