Newer
Older
<?php
/**
* Copyright (c) 2020 TechDivision GmbH
* All rights reserved
*
* This product includes proprietary software developed at TechDivision GmbH, Germany
* For more information see http://www.techdivision.com/
*
* To obtain a valid license for using this software please contact us at
* license@techdivision.com
*/
declare(strict_types=1);
namespace TechDivision\CsvSourceTransformationExample\Api;
interface MappingInterface
{
/**
* @param array $row
* @return array
*/
public function header(array $row): array;
/**
* @param array $row
* @return array
*/
public function row(array $row): array;
}