Last active
April 27, 2019 12:43
-
-
Save banqhsia/7ab274d9bb2fa92e1a1cb7a87012acc8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
class BonusCalculator | |
{ | |
const BONUS_EXPIRED_AT = '2015-12-25'; | |
public function isExpired() | |
{ | |
$datetime = new DateTime; | |
return ($datetime->getToday() >= self::BONUS_EXPIRED_AT); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment