2014-08-06 17:02:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace Firefly\Storage\RecurringTransaction;
|
|
|
|
|
2014-08-10 15:01:46 +02:00
|
|
|
/**
|
|
|
|
* Interface RecurringTransactionRepositoryInterface
|
|
|
|
*
|
|
|
|
* @package Firefly\Storage\RecurringTransaction
|
|
|
|
*/
|
2014-08-06 17:02:02 +02:00
|
|
|
interface RecurringTransactionRepositoryInterface
|
|
|
|
{
|
|
|
|
|
2014-08-10 15:01:46 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2014-08-06 17:02:02 +02:00
|
|
|
public function get();
|
|
|
|
|
2014-08-10 15:01:46 +02:00
|
|
|
/**
|
|
|
|
* @param $data
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2014-08-07 07:44:37 +02:00
|
|
|
public function store($data);
|
|
|
|
|
2014-08-10 15:01:46 +02:00
|
|
|
/**
|
|
|
|
* @param \RecurringTransaction $recurringTransaction
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2014-08-07 07:44:37 +02:00
|
|
|
public function destroy(\RecurringTransaction $recurringTransaction);
|
|
|
|
|
2014-08-06 17:02:02 +02:00
|
|
|
|
|
|
|
}
|