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