2016-04-29 20:59:28 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* JournalInterface.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-05-20 12:27:31 +02:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
2016-04-29 20:59:28 +02:00
|
|
|
namespace FireflyIII\Crud\Split;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use FireflyIII\Models\TransactionJournal;
|
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface JournalInterface
|
|
|
|
|
*
|
|
|
|
|
* @package FireflyIII\Crud\Split
|
|
|
|
|
*/
|
|
|
|
|
interface JournalInterface
|
|
|
|
|
{
|
2016-05-15 16:13:05 +02:00
|
|
|
/**
|
|
|
|
|
* @param $journal
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function markAsComplete(TransactionJournal $journal);
|
2016-04-29 20:59:28 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
|
* @param array $transaction
|
|
|
|
|
*
|
|
|
|
|
* @return Collection
|
|
|
|
|
*/
|
|
|
|
|
public function storeTransaction(TransactionJournal $journal, array $transaction): Collection;
|
2016-05-13 07:33:04 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
|
* @param array $data
|
|
|
|
|
*
|
|
|
|
|
* @return TransactionJournal
|
|
|
|
|
*/
|
|
|
|
|
public function updateJournal(TransactionJournal $journal, array $data): TransactionJournal;
|
2016-04-29 20:59:28 +02:00
|
|
|
}
|