mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
36 lines
574 B
PHP
36 lines
574 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();
|
|
|
|
}
|