id;
}
public function getUser(): IUser {
return $this->user;
}
public function getStartDate(): int {
return $this->startDate;
}
public function getEndDate(): int {
return $this->endDate;
}
public function getShortMessage(): string {
return $this->shortMessage;
}
public function getMessage(): string {
return $this->message;
}
public function jsonSerialize(): array {
return [
'id' => $this->getId(),
'userId' => $this->getUser()->getUID(),
'startDate' => $this->getStartDate(),
'endDate' => $this->getEndDate(),
'shortMessage' => $this->getShortMessage(),
'message' => $this->getMessage(),
];
}
}
/sabre-dav-itip-broker'>3rdparty/stable29/sabre-dav-itip-broker
Nextcloud server, a safe home for all your data: https://github.com/nextcloud/server | www-data |
blob: a2832bce0092b2c73b11599a97e44d373d79b469 (
plain)