Files
firefly-iii/app/Support/Import/JobConfiguration/File/FileConfigurationInterface.php

54 lines
1.4 KiB
PHP
Raw Normal View History

<?php
/**
* ConfigurationInterface.php
2018-05-21 07:22:38 +02:00
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:44:05 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2018-05-21 07:22:38 +02:00
namespace FireflyIII\Support\Import\JobConfiguration\File;
use FireflyIII\Models\ImportJob;
use Illuminate\Support\MessageBag;
/**
2018-05-21 09:40:19 +02:00
* Class FileConfigurationInterface.
*/
2018-05-21 09:40:19 +02:00
interface FileConfigurationInterface
{
/**
* Store data associated with current stage.
*
* @param array $data
*
* @return MessageBag
*/
public function configureJob(array $data): MessageBag;
2017-08-12 07:47:42 +02:00
/**
* Get the data necessary to show the configuration screen.
*
* @return array
*/
public function getNextData(): array;
/**
2018-05-12 15:50:01 +02:00
* @param ImportJob $importJob
*/
2018-05-12 15:50:01 +02:00
public function setImportJob(ImportJob $importJob): void;
2017-07-07 08:09:42 +02:00
}