mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 19:47:48 +00:00
17 lines
252 B
PHP
17 lines
252 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\RecurringTransaction;
|
|
|
|
|
|
interface RecurringTransactionRepositoryInterface
|
|
{
|
|
|
|
public function get();
|
|
|
|
public function store($data);
|
|
|
|
public function destroy(\RecurringTransaction $recurringTransaction);
|
|
|
|
|
|
}
|