mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 15:43:19 -06:00
17 lines
254 B
PHP
17 lines
254 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
namespace FireflyIII\Helpers\Csv\Mapper;
|
|
|
|
/**
|
|
* Interface MapperInterface
|
|
*
|
|
* @package FireflyIII\Helpers\Csv\Mapper
|
|
*/
|
|
interface MapperInterface
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getMap();
|
|
}
|