Example #1
0
 /**
  * @param Message[] $historyEvents
  * @return Post
  */
 public static function reconstituteFromHistory($historyEvents)
 {
     $self = new self();
     $self->replay($historyEvents);
     return $self;
 }