mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
30 lines
427 B
PHP
30 lines
427 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 05/07/15
|
|
* Time: 19:20
|
|
*/
|
|
|
|
namespace FireflyIII\Helpers\Csv\PostProcessing;
|
|
|
|
|
|
/**
|
|
* Interface PostProcessorInterface
|
|
*
|
|
* @package FireflyIII\Helpers\Csv\PostProcessing
|
|
*/
|
|
interface PostProcessorInterface
|
|
{
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function process();
|
|
|
|
/**
|
|
* @param array $data
|
|
*/
|
|
public function setData(array $data);
|
|
}
|