mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-21 05:53:08 -06:00
35 lines
573 B
PHP
35 lines
573 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Repositories\Reminder;
|
||
|
use Illuminate\Support\Collection;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Interface ReminderRepositoryInterface
|
||
|
*
|
||
|
* @package FireflyIII\Repositories\Reminder
|
||
|
*/
|
||
|
interface ReminderRepositoryInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getActiveReminders();
|
||
|
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getDismissedReminders();
|
||
|
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getExpiredReminders();
|
||
|
|
||
|
/**
|
||
|
* @return Collection
|
||
|
*/
|
||
|
public function getInactiveReminders();
|
||
|
|
||
|
}
|