2016-06-24 07:24:34 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* SpecificInterface.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-06-24 07:24:34 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Import\Specifics;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface SpecificInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Import\Specifics
|
|
|
|
*/
|
|
|
|
interface SpecificInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-08-26 01:21:31 -05:00
|
|
|
public static function getDescription(): string;
|
2016-06-24 07:24:34 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-08-26 01:21:31 -05:00
|
|
|
public static function getName(): string;
|
2016-06-24 07:24:34 -05:00
|
|
|
|
2016-08-12 02:27:09 -05:00
|
|
|
/**
|
|
|
|
* @param array $row
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function run(array $row): array;
|
|
|
|
|
2016-08-12 08:10:03 -05:00
|
|
|
}
|