firefly-iii/app/Export/ProcessorInterface.php

77 lines
1.7 KiB
PHP
Raw Normal View History

2016-12-11 11:34:18 -06:00
<?php
/**
* ProcessorInterface.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
2016-12-11 11:34:18 -06:00
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
2016-12-11 11:34:18 -06:00
*
2017-10-21 01:40:00 -05:00
* 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 07:41:58 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2016-12-11 11:34:18 -06:00
*/
declare(strict_types=1);
2016-12-11 11:34:18 -06:00
namespace FireflyIII\Export;
use Illuminate\Support\Collection;
/**
2017-11-15 05:25:49 -06:00
* Interface ProcessorInterface.
2016-12-11 11:34:18 -06:00
*/
interface ProcessorInterface
{
/**
* Processor constructor.
*/
2017-02-05 09:14:23 -06:00
public function __construct();
2016-12-11 11:34:18 -06:00
/**
* @return bool
*/
public function collectAttachments(): bool;
/**
* @return bool
*/
public function collectJournals(): bool;
/**
* @return bool
*/
public function collectOldUploads(): bool;
/**
* @return bool
*/
public function convertJournals(): bool;
/**
* @return bool
*/
public function createZipFile(): bool;
/**
* @return bool
*/
public function exportJournals(): bool;
/**
* @return Collection
*/
public function getFiles(): Collection;
2017-02-05 09:14:23 -06:00
/**
* @param array $settings
*/
public function setSettings(array $settings);
}