Last active
May 30, 2022 17:14
-
-
Save mcsee/f7e0e7c0e3843e94ec021d2352a19f9b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
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