mirror of
https://github.com/nextcloud/server.git
synced 2026-02-28 12:30:40 -05:00
34 lines
687 B
PHP
34 lines
687 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
||
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace OCP\Files\Config\Event;
|
||
|
|
|
||
|
|
use OCP\EventDispatcher\Event;
|
||
|
|
use OCP\Files\Config\ICachedMountInfo;
|
||
|
|
use OCP\Files\Mount\IMountPoint;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Event emitted when a user mount was moved.
|
||
|
|
*
|
||
|
|
* @since 31.0.6
|
||
|
|
*/
|
||
|
|
class UserMountUpdatedEvent extends Event {
|
||
|
|
/**
|
||
|
|
* Creates a new @see UserMountUpdatedEvent
|
||
|
|
*
|
||
|
|
* @since 31.0.6
|
||
|
|
*/
|
||
|
|
public function __construct(
|
||
|
|
public readonly IMountPoint|ICachedMountInfo $oldMountPoint,
|
||
|
|
public readonly IMountPoint|ICachedMountInfo $newMountPoint,
|
||
|
|
) {
|
||
|
|
parent::__construct();
|
||
|
|
}
|
||
|
|
}
|