summaryrefslogtreecommitdiffstats
path: root/lib/public/LanguageModel/Events/SummarySuccessfulEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/LanguageModel/Events/SummarySuccessfulEvent.php')
-rw-r--r--lib/public/LanguageModel/Events/SummarySuccessfulEvent.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/public/LanguageModel/Events/SummarySuccessfulEvent.php b/lib/public/LanguageModel/Events/SummarySuccessfulEvent.php
deleted file mode 100644
index 353394438f0..00000000000
--- a/lib/public/LanguageModel/Events/SummarySuccessfulEvent.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-namespace OCP\LanguageModel\Events;
-
-/**
- * @since 28.0.0
- */
-class SummarySuccessfulEvent extends AbstractLanguageModelEvent {
-
- public function __construct(int $requestId,
- ?string $userId,
- string $appId,
- private string $output) {
- parent::__construct($requestId, $userId, $appId);
- }
-
- /**
- * @return string
- */
- public function getOutput(): string {
- return $this->output;
- }
-}