Skip to content

Instantly share code, notes, and snippets.

@banqhsia
Last active April 27, 2019 12:43
Show Gist options
  • Save banqhsia/7ab274d9bb2fa92e1a1cb7a87012acc8 to your computer and use it in GitHub Desktop.
Save banqhsia/7ab274d9bb2fa92e1a1cb7a87012acc8 to your computer and use it in GitHub Desktop.
<?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