0
0
mirror of https://github.com/nextcloud/server.git synced 2024-12-29 16:38:28 +00:00
nextcloud_server/apps/files_sharing/lib/Event/ShareMountedEvent.php
provokateurin 381077028a
refactor(apps): Use constructor property promotion when possible
Signed-off-by: provokateurin <kate@provokateurin.de>
2024-10-21 12:37:59 +02:00

40 lines
801 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Files_Sharing\Event;
use OCA\Files_Sharing\SharedMount;
use OCP\EventDispatcher\Event;
use OCP\Files\Mount\IMountPoint;
class ShareMountedEvent extends Event {
/** @var IMountPoint[] */
private $additionalMounts = [];
public function __construct(
private SharedMount $mount,
) {
parent::__construct();
}
public function getMount(): SharedMount {
return $this->mount;
}
public function addAdditionalMount(IMountPoint $mountPoint): void {
$this->additionalMounts[] = $mountPoint;
}
/**
* @return IMountPoint[]
*/
public function getAdditionalMounts(): array {
return $this->additionalMounts;
}
}