mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
19 lines
287 B
PHP
19 lines
287 B
PHP
<?php
|
|
namespace Firefly\Storage\Reminder;
|
|
|
|
|
|
/**
|
|
* Interface ReminderRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\Reminder
|
|
*/
|
|
interface ReminderRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* @param \User $user
|
|
* @return mixed
|
|
*/
|
|
public function overruleUser(\User $user);
|
|
|
|
}
|