EventRepositoryInterface.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @copyright © TMS-Plugins. All rights reserved. |
| 4 | * @licence See LICENCE.md for license details. |
| 5 | */ |
| 6 | |
| 7 | namespace AmeliaBooking\Domain\Repository\Booking\Event; |
| 8 | |
| 9 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 10 | |
| 11 | /** |
| 12 | * Interface AppointmentRepositoryInterface |
| 13 | * |
| 14 | * @package AmeliaBooking\Domain\Repository\Booking\Event |
| 15 | */ |
| 16 | interface EventRepositoryInterface extends BaseRepositoryInterface |
| 17 | { |
| 18 | } |
| 19 |