From 70fa024cfd10539742097e70cda6f4fa09ed469b Mon Sep 17 00:00:00 2001 From: Alexander Walther Date: Mon, 5 Feb 2024 00:22:30 +0100 Subject: [PATCH] Update event_registration.php --- lib/event_registration.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/event_registration.php b/lib/event_registration.php index 0c93813..c50a9fd 100644 --- a/lib/event_registration.php +++ b/lib/event_registration.php @@ -241,7 +241,7 @@ public function setDateId(int $dateId): self /** * Gibt das Datum der Registrierung zurück. * - * @return rex_yform_manager_collection|null Eine Sammlung von Daten oder null, wenn keine gefunden wurden. + * @return rex_yform_manager_dataset|null Eine Sammlung von Daten oder null, wenn keine gefunden wurden. * * Beispiel: * ```php @@ -252,14 +252,14 @@ public function setDateId(int $dateId): self * * Returns the date of the registration. * - * @return rex_yform_manager_collection|null A collection of dates or null if none were found. + * @return rex_yform_manager_dataset|null A collection of dates or null if none were found. * * Example: * ```php * $date = $eventRegistration->getDate(); * ``` */ - public function getDate(): ?rex_yform_manager_collection + public function getDate(): ?rex_yform_manager_dataset { return $this->getRelatedDataset('date_id'); }