mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 14:33:11 -06:00
48 lines
714 B
PHP
48 lines
714 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 23/08/14
|
|
* Time: 20:59
|
|
*/
|
|
|
|
namespace Firefly\Storage\Reminder;
|
|
|
|
|
|
/**
|
|
* Interface ReminderRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\Reminder
|
|
*/
|
|
interface ReminderRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* @param \Reminder $reminder
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function deactivate(\Reminder $reminder);
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function get();
|
|
|
|
/**
|
|
* @param $id
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function find($id);
|
|
|
|
|
|
public function getCurrentRecurringReminders();
|
|
|
|
/**
|
|
* @param \User $user
|
|
* @return mixed
|
|
*/
|
|
public function overruleUser(\User $user);
|
|
|
|
}
|