mirror of
https://github.com/nextcloud/server.git
synced 2025-02-05 17:10:17 +00:00
70 lines
1.2 KiB
PHP
70 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\Events;
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
/**
|
|
* Class CachedCalendarObjectDeletedEvent
|
|
*
|
|
* @package OCA\DAV\Events
|
|
* @since 20.0.0
|
|
*/
|
|
class CachedCalendarObjectDeletedEvent extends Event {
|
|
|
|
/**
|
|
* CachedCalendarObjectDeletedEvent constructor.
|
|
*
|
|
* @param int $subscriptionId
|
|
* @param array $subscriptionData
|
|
* @param array $shares
|
|
* @param array $objectData
|
|
* @since 20.0.0
|
|
*/
|
|
public function __construct(
|
|
private int $subscriptionId,
|
|
private array $subscriptionData,
|
|
private array $shares,
|
|
private array $objectData,
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
* @since 20.0.0
|
|
*/
|
|
public function getSubscriptionId(): int {
|
|
return $this->subscriptionId;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @since 20.0.0
|
|
*/
|
|
public function getSubscriptionData(): array {
|
|
return $this->subscriptionData;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @since 20.0.0
|
|
*/
|
|
public function getShares(): array {
|
|
return $this->shares;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
* @since 20.0.0
|
|
*/
|
|
public function getObjectData(): array {
|
|
return $this->objectData;
|
|
}
|
|
}
|