*/ class VersionRestoredListener implements IEventListener { public function __construct( private DocumentService $documentService, ) { } public function handle(Event $event): void { if (!($event instanceof VersionRestoredEvent)) { return; } $sourceFile = $event->getVersion()->getSourceFile(); if (!$sourceFile instanceof File) { return; } // Reset document session to avoid manual conflict resolution if there's no unsaved steps try { $this->documentService->resetDocument($sourceFile->getId()); } catch (DocumentHasUnsavedChangesException|NotFoundException $e) { // Do not throw during event handling in this is expected to happen // DocumentHasUnsavedChangesException: A document editing session is likely ongoing, someone can resolve the conflict // NotFoundException: The event was called on a file that was just created so a NonExistingFile object is used that has no id yet } } }