Created
November 3, 2019 15:05
-
-
Save hungtrinh/c18e1b2680b2d62ced8d9d180076eb1f to your computer and use it in GitHub Desktop.
minimal production code for first requirement
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment