NotificationRepositoryInterface.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Domain\Repository\Notification; |
| 4 | |
| 5 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 6 | |
| 7 | /** |
| 8 | * Interface NotificationRepositoryInterface |
| 9 | * |
| 10 | * @package AmeliaBooking\Domain\Repository\Notification |
| 11 | */ |
| 12 | interface NotificationRepositoryInterface extends BaseRepositoryInterface |
| 13 | { |
| 14 | } |
| 15 |