Covered the reminder controller.

This commit is contained in:
James Cole
2015-05-03 09:55:22 +02:00
parent 617808d603
commit c48dbf030f
7 changed files with 300 additions and 49 deletions

View File

@@ -0,0 +1,34 @@
<?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();
}