aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Events/Node/FilesystemTornDownEvent.php
blob: 2076b739b513fb9f3ebe5c568e68d4c3b337cdc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
}