private function listUnpublishedNotifications($mostRecentPublishedMessageId)
{
$storeEvents = $this->eventStore()->allStoredEventsSince($mostRecentPublishedMessageId);
// Vaughn Vernon converts StoredEvents into another objects: Notification
// Is it really needed?
return $storeEvents;
}