mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-23 15:03:14 -06:00
25 lines
413 B
PHP
25 lines
413 B
PHP
|
<?php
|
||
|
namespace FireflyIII\Helpers\Csv\Specifix;
|
||
|
|
||
|
/**
|
||
|
* Interface SpecifixInterface
|
||
|
*
|
||
|
* @package FireflyIII\Helpers\Csv\Specifix
|
||
|
*/
|
||
|
interface SpecifixInterface
|
||
|
{
|
||
|
/**
|
||
|
* Implement bank and locale related fixes.
|
||
|
*/
|
||
|
public function fix();
|
||
|
|
||
|
/**
|
||
|
* @param array $data
|
||
|
*/
|
||
|
public function setData($data);
|
||
|
|
||
|
/**
|
||
|
* @param array $row
|
||
|
*/
|
||
|
public function setRow($row);
|
||
|
}
|