Created
April 27, 2019 12:47
-
-
Save banqhsia/1c8415ef060536209995334bda8eb90c 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 = $this->getDateTime(); | |
return ($datetime->getToday() >= self::BONUS_EXPIRED_AT); | |
} | |
protected function getDateTime() | |
{ | |
return new DateTime; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment