PaymentRepositoryInterface.php
25 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\Payment; |
| 8 | |
| 9 | use AmeliaBooking\Domain\Repository\BaseRepositoryInterface; |
| 10 | |
| 11 | /** |
| 12 | * Interface PaymentRepositoryInterface |
| 13 | * |
| 14 | * @package AmeliaBooking\Domain\Repository\Payment |
| 15 | */ |
| 16 | interface PaymentRepositoryInterface extends BaseRepositoryInterface |
| 17 | { |
| 18 | /** |
| 19 | * @param int $status |
| 20 | * |
| 21 | * @return |
| 22 | */ |
| 23 | public function findByStatus($status); |
| 24 | } |
| 25 |