mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
34 lines
567 B
PHP
34 lines
567 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\RecurringTransaction;
|
|
|
|
/**
|
|
* Interface RecurringTransactionRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\RecurringTransaction
|
|
*/
|
|
interface RecurringTransactionRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function get();
|
|
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function store($data);
|
|
|
|
/**
|
|
* @param \RecurringTransaction $recurringTransaction
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function destroy(\RecurringTransaction $recurringTransaction);
|
|
|
|
|
|
}
|