2015-05-03 02:55:22 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Reminder;
|
2015-05-05 00:51:02 -05:00
|
|
|
|
2015-05-03 02:55:22 -05:00
|
|
|
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();
|
|
|
|
|
|
|
|
}
|