Files
firefly-iii/app/Helpers/Csv/PostProcessing/PostProcessorInterface.php

32 lines
594 B
PHP
Raw Normal View History

2015-07-05 19:31:58 +02:00
<?php
/**
* PostProcessorInterface.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
2016-02-05 12:08:25 +01:00
declare(strict_types = 1);
2015-07-05 19:31:58 +02:00
namespace FireflyIII\Helpers\Csv\PostProcessing;
/**
* Interface PostProcessorInterface
*
* @package FireflyIII\Helpers\Csv\PostProcessing
*/
2015-07-06 16:52:18 +02:00
interface PostProcessorInterface
{
2015-07-05 19:31:58 +02:00
/**
2015-07-06 16:52:18 +02:00
* @return array
2015-07-05 19:31:58 +02:00
*/
2016-04-06 16:37:28 +02:00
public function process(): array;
2015-07-05 19:31:58 +02:00
/**
2015-07-06 16:52:18 +02:00
* @param array $data
2015-07-05 19:31:58 +02:00
*/
2015-07-06 16:52:18 +02:00
public function setData(array $data);
2015-07-09 21:26:40 +02:00
}