mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 10:53:37 +00:00
22 lines
385 B
PHP
22 lines
385 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Firefly\Helper\Controllers;
|
||
|
use Illuminate\Support\MessageBag;
|
||
|
|
||
|
/**
|
||
|
* Interface TransactionInterface
|
||
|
*
|
||
|
* @package Firefly\Helper\Controllers
|
||
|
*/
|
||
|
interface TransactionInterface {
|
||
|
|
||
|
/**
|
||
|
* Store a full transaction journal and associated stuff
|
||
|
*
|
||
|
* @param array $data
|
||
|
*
|
||
|
* @return MessageBag
|
||
|
*/
|
||
|
public function store(array $data);
|
||
|
|
||
|
}
|