firefly-iii/app/Import/Specifics/SpecificInterface.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;
}