From e943ba2f35ba7d0767819e3c8770cb4c1a68ff35 Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Sat, 20 Jan 2024 00:09:02 -0600 Subject: [PATCH] PHPCS --- src/mt-cart-handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mt-cart-handler.php b/src/mt-cart-handler.php index 3587cf4a..5eee0ab5 100644 --- a/src/mt-cart-handler.php +++ b/src/mt-cart-handler.php @@ -189,7 +189,7 @@ function mt_get_inventory_change( $passed, $saved = array() ) { // If tickets are removed from the cart. if ( $new_count < $old_count ) { $increment = ( $old_count - $new_count ); - // If tickets are added to the cart. + // If tickets are added to the cart. } else { $increment = ( $new_count - $old_count ); }