Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active June 26, 2021 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/4713b63031ad073d46701b7b4c81b028 to your computer and use it in GitHub Desktop.
Save mcsee/4713b63031ad073d46701b7b4c81b028 to your computer and use it in GitHub Desktop.
<?
class Employee {
function taxesPayedUntilToday() {
return database()->select(
"SELECT TAXES FROM EMPLOYEE".
" WHERE ID = " . $this->id() .
" AND DATE < " . currentDate());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment