CustomFieldOptionRepositoryInterface.php
6 months ago
CustomFieldRepositoryInterface.php
6 months ago
CustomFieldOptionRepositoryInterface.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\CustomField; |
| 9 | |
| 10 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 11 | |
| 12 | /** |
| 13 | * Interface CustomFieldOptionRepositoryInterface |
| 14 | * |
| 15 | * @package AmeliaBooking\Domain\Repository\CustomField |
| 16 | */ |
| 17 | interface CustomFieldOptionRepositoryInterface extends BaseRepositoryInterface |
| 18 | { |
| 19 | } |
| 20 |