Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active April 29, 2021 22:25
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/9247c16a3af3a743b2c60ca479762a05 to your computer and use it in GitHub Desktop.
Save mcsee/9247c16a3af3a743b2c60ca479762a05 to your computer and use it in GitHub Desktop.
<?
final class Movement {
private $party;
private $counterparty;
private $amount;
private $date;
function __construct($aParty, $aCounterParty, $anAmount, $aDate) {
$this->party = $aParty;
$this->counterparty = $aCounterParty;
$this->amount = $anAmount;
$this->date = $aDate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment