| 1 | <?php |
||
| 11 | class PaymentRepository extends Repository implements PaymentRepositoryInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @return string |
||
| 15 | */ |
||
| 16 | public function model() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritdoc |
||
| 23 | */ |
||
| 24 | public function hasRecentlyPaid(int $userId, int $days = 7) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritdoc |
||
| 38 | */ |
||
| 39 | public function ongoingPaymentsWithBoostBenefit() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @inheritdoc |
||
| 54 | */ |
||
| 55 | public function filter() |
||
| 68 | } |
||
| 69 |