Last active
June 12, 2021 21:34
-
-
Save morrislaptop/19cd5b6821969a2c148aac13c3675c33 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
class PostAggregateRoot | |
{ | |
public function publishPost(DateTime $when) { | |
$this->recordThat(new PostPublishScheduled($when)); | |
if ($when < now()) { | |
$this->recordThat(new PostPublished()); | |
} | |
return $this; | |
} | |
public function publishPostNow() | |
$this->recordThat(new PostPublished()); | |
return $this; | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment