| @@ -44,9 +44,10 @@ | ||
| 44 | 44 | * @throws \Exception If settings not found. |
| 45 | 45 | */ |
| 46 | 46 | public function get_discounts( $items, $cart ) { // phpcs:ignore |
| 47 | 47 | |
| 48 | - $discount = 0; | |
| 48 | + $discount = 0; | |
| 49 | + $discount_type = ''; | |
| 49 | 50 | |
| 50 | 51 | if ( empty( $items ) ) { |
| 51 | 52 | return $discount; |
| 52 | 53 | } |
| @@ -91,9 +92,8 @@ | ||
| 91 | 92 | $discount = $this->calculate_discount( $cost, $discount_type, $discount_value ); |
| 92 | 93 | } |
| 93 | 94 | } |
| 94 | 95 | |
| 95 | - // @phpstan-ignore-next-line | |
| 96 | 96 | return apply_filters( 'disco_final_discounted_amount', $discount, $discount_type ); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | |