aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Events/Node/FilesystemTornDownEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Files/Events/Node/FilesystemTornDownEvent.php')
-rw-r--r--lib/public/Files/Events/Node/FilesystemTornDownEvent.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/public/Files/Events/Node/FilesystemTornDownEvent.php b/lib/public/Files/Events/Node/FilesystemTornDownEvent.php
new file mode 100644
index 00000000000..2076b739b51
--- /dev/null
+++ b/lib/public/Files/Events/Node/FilesystemTornDownEvent.php
@@ -0,0 +1,19 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+namespace OCP\Files\Events\Node;
+
+use OCP\EventDispatcher\Event;
+
+/**
+ * Event fired after the filesystem has been torn down
+ *
+ * @since 24.0.0
+ */
+class FilesystemTornDownEvent extends Event {
+}