/** * Marks the readable as unread by this participant * * @param ReadableInterface $readable * @param ParticipantInterface $participant */ public function markAsUnreadByParticipant(ReadableInterface $readable, ParticipantInterface $participant) { $readable->setIsReadByParticipant($participant, false); }