Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active May 30, 2022 17:14
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/f7e0e7c0e3843e94ec021d2352a19f9b to your computer and use it in GitHub Desktop.
Save mcsee/f7e0e7c0e3843e94ec021d2352a19f9b to your computer and use it in GitHub Desktop.
<?
final class Movement {
function __construct($aParty, $aCounterParty, $anAmount, $aDate) {
if ($aDate < Date::today()) {
throw new InvalidMovementDateException($aDate);
} // ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment