Skip to content

Instantly share code, notes, and snippets.

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