From 62df0fcaf079dac32cb42385f2865b24bd8c0205 Mon Sep 17 00:00:00 2001 From: Samuel Wolff Date: Mon, 11 Dec 2023 15:32:24 +0100 Subject: [PATCH] Kommentare KindModel --- Model/KindModel.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Model/KindModel.php b/Model/KindModel.php index ae25b61..7845c6f 100644 --- a/Model/KindModel.php +++ b/Model/KindModel.php @@ -38,6 +38,7 @@ public function getKind($parentId){ } /** + * * Updated die Daten eines Kindes * * @param $kindId Id des Kindes @@ -76,6 +77,9 @@ public function updateKind($kindId, $data){ } /** + * + * Fügt ein Kind mit gegebenen Daten in die Datenbank hinzu + * * @param $data Die Daten für das neue Kind */ public function addKind($data){ @@ -112,7 +116,13 @@ public function addKind($data){ return $result; } - +/** + * + * Löscht ein Kind mit einer gegebenen Id aus der Datenbank + * + * @param $kindId Die Id des zu löschenden Kindes + * + */ public function deleteKind($kindId){ $pdo = $this->linkDB();