mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 14:33:11 -06:00
26 lines
414 B
PHP
26 lines
414 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);
|
|
}
|