Created
November 3, 2019 15:30
-
-
Save hungtrinh/24480e39574b19d5a76e6c14206cf639 to your computer and use it in GitHub Desktop.
minimal production code pass business rule for 'platinum', 'gold' customer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function discountRateByMembershipType ($membershipType) { | |
if ('platinum' === $membershipType) return 0.15; | |
if ('gold' === $membershipType) return 0.1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment