Skip to content

Commit

Permalink
PHPCS
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Jan 20, 2024
1 parent 80f0e6d commit e943ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mt-cart-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}
Expand Down

0 comments on commit e943ba2

Please sign in to comment.