| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 65 | public function setPaymentCategories(string $countryCode) |
||
| 66 | { |
||
| 67 | $paymentMethods = []; |
||
| 68 | |||
| 69 | foreach (PaymentCategory::where('country_code', $countryCode)->get(['payment_type']) as $paymentMethod) { |
||
| 70 | $paymentMethods[] = $paymentMethod->payment_type; |
||
| 71 | } |
||
| 72 | |||
| 73 | $this->paymentCategories = $paymentMethods; |
||
| 74 | } |
||
| 75 | |||
| 86 |