123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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;
- }
- }
|