You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/dav/lib/Events/CalendarUpdatedEvent.php

84 lines
1.4 KiB

<?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 CalendarUpdatedEvent
*
* @package OCA\DAV\Events
* @since 20.0.0
*/
class CalendarUpdatedEvent extends Event {
/** @var int */
private $calendarId;
/** @var array */
private $calendarData;
/** @var array */
private $shares;
/** @var array */
private $mutations;
/**
* CalendarUpdatedEvent constructor.
*
* @param int $calendarId
* @param array $calendarData
* @param array $shares
* @param array $mutations
* @since 20.0.0
*/
public function __construct(int $calendarId,
array $calendarData,
array $shares,
array $mutations) {
parent::__construct();
$this->calendarId = $calendarId;
$this->calendarData = $calendarData;
$this->shares = $shares;
$this->mutations = $mutations;
}
/**
* @return int
* @since 20.0.0
*/
public function getCalendarId(): int {
return $this->calendarId;
}
/**
* @return array
* @since 20.0.0
*/
public function getCalendarData(): array {
return $this->calendarData;
}
/**
* @return array
* @since 20.0.0
*/
public function getShares(): array {
return $this->shares;
}
/**
* @return array
* @since 20.0.0
*/
public function getMutations(): array {
return $this->mutations;
}
}