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