SlotsEntitiesFactory.php
27 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\Factory\Booking; |
| 9 | |
| 10 | use AmeliaBooking\Domain\Entity\Booking\SlotsEntities; |
| 11 | |
| 12 | /** |
| 13 | * Class SlotsEntitiesFactory |
| 14 | * |
| 15 | * @package AmeliaBooking\Domain\Factory\Booking |
| 16 | */ |
| 17 | class SlotsEntitiesFactory |
| 18 | { |
| 19 | /** |
| 20 | * @return SlotsEntities |
| 21 | */ |
| 22 | public static function create() |
| 23 | { |
| 24 | return new SlotsEntities(); |
| 25 | } |
| 26 | } |
| 27 |