mirror of
https://github.com/nextcloud/server.git
synced 2025-05-04 05:51:06 +00:00
84 lines
1.5 KiB
PHP
84 lines
1.5 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 {
|
|
|
|
/** @var int */
|
|
private $subscriptionId;
|
|
|
|
/** @var array */
|
|
private $subscriptionData;
|
|
|
|
/** @var array */
|
|
private $shares;
|
|
|
|
/** @var array */
|
|
private $objectData;
|
|
|
|
/**
|
|
* CachedCalendarObjectDeletedEvent constructor.
|
|
*
|
|
* @param int $subscriptionId
|
|
* @param array $subscriptionData
|
|
* @param array $shares
|
|
* @param array $objectData
|
|
* @since 20.0.0
|
|
*/
|
|
public function __construct(int $subscriptionId,
|
|
array $subscriptionData,
|
|
array $shares,
|
|
array $objectData) {
|
|
parent::__construct();
|
|
$this->subscriptionId = $subscriptionId;
|
|
$this->subscriptionData = $subscriptionData;
|
|
$this->shares = $shares;
|
|
$this->objectData = $objectData;
|
|
}
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
}
|