mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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();
 | |
| 
 | |
| }
 |