Cleanup post processing.

This commit is contained in:
James Cole
2015-07-05 19:31:58 +02:00
parent 18b038d8ff
commit c4ef379d0e
9 changed files with 230 additions and 47 deletions

View File

@@ -0,0 +1,28 @@
<?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 {
/**
* @param array $data
*/
public function setData(array $data);
/**
* @return array
*/
public function process();
}