mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 10:21:25 -06:00
41 lines
748 B
PHP
41 lines
748 B
PHP
<?php
|
|
/**
|
|
* SpecificInterface.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Import\Specifics;
|
|
|
|
/**
|
|
* Interface SpecificInterface
|
|
*
|
|
* @package FireflyIII\Import\Specifics
|
|
*/
|
|
interface SpecificInterface
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public static function getDescription(): string;
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public static function getName(): string;
|
|
|
|
/**
|
|
* @param array $row
|
|
*
|
|
* @return array
|
|
*/
|
|
public function run(array $row): array;
|
|
|
|
}
|