2016-07-02 13:40:23 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* MapperInterface.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-07-02 13:40:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Import\Mapper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface MapperInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Import\Mapper
|
|
|
|
*/
|
|
|
|
interface MapperInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getMap(): array;
|
|
|
|
}
|