| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class RefundRepository extends DoctrineCrudRepository implements RefundRepositoryInterface |
||
| 24 | { |
||
| 25 | public function getForBillingAdmin(BillingAdminInterface $billingAdmin): array |
||
| 26 | { |
||
| 27 | return $this->entityRepository->findBy(['billingAdmin' => $billingAdmin]); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getForCustomer(CustomerInterface $customer): array |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getForPayment(Payment $payment): array |
||
| 40 |