*/ interface ReaderInterface { /** * Marks the readable as read by the current authenticated user. */ public function markAsRead(ReadableInterface $readable); /** * Marks the readable as unread by the current authenticated user. */ public function markAsUnread(ReadableInterface $readable); }