12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare(strict_types=1);
- namespace OCA\DAV\Events;
- use OCP\EventDispatcher\Event;
- class CalendarRestoredEvent extends Event {
-
- public function __construct(
- private int $calendarId,
- private array $calendarData,
- private array $shares,
- ) {
- parent::__construct();
- }
-
- public function getCalendarId(): int {
- return $this->calendarId;
- }
-
- public function getCalendarData(): array {
- return $this->calendarData;
- }
-
- public function getShares(): array {
- return $this->shares;
- }
- }
|