aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/EventSourceFactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/EventSourceFactory.php')
-rw-r--r--lib/private/EventSourceFactory.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/private/EventSourceFactory.php b/lib/private/EventSourceFactory.php
new file mode 100644
index 00000000000..57888b1be4c
--- /dev/null
+++ b/lib/private/EventSourceFactory.php
@@ -0,0 +1,25 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+namespace OC;
+
+use OCP\IEventSource;
+use OCP\IEventSourceFactory;
+use OCP\IRequest;
+
+class EventSourceFactory implements IEventSourceFactory {
+ public function __construct(
+ private IRequest $request,
+ ) {
+ }
+
+ public function create(): IEventSource {
+ return new EventSource($this->request);
+ }
+}