mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-21 10:41:22 +00: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();
|
|
|
|
}
|