From 20cb808935af3bb44060e4d9e8636e74518a3524 Mon Sep 17 00:00:00 2001 From: eichehome Date: Sun, 23 Jan 2022 12:17:55 +0100 Subject: [PATCH] Kommentare in Session.php Habe Kommentare in Session.php modifiziert --- class/Session.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/class/Session.php b/class/Session.php index c9da0ff..fe74f08 100644 --- a/class/Session.php +++ b/class/Session.php @@ -20,12 +20,12 @@ /** * Wrapper für eine Session * - * @author Christian Brüggen + * @author Eichehome */ class Session { /** - * Konstrucktor + * Konstruktor (Startet eine Session) */ public function __construct() { @@ -33,8 +33,8 @@ class Session } /** - * Setzt einen Wert für einen Key im Session-Array - * @param string $key Key + * Setzt einen Wert für einen Schlüssel im Session-Array. Falls kein Wert angegeben, wird der Wert gelöscht + * @param string $key Schlüssel * @param string $value Wert * @return string */ @@ -44,8 +44,8 @@ class Session } /** - * Gibt den Wert für einen Key im Session-Array zurück - * @param string $key Key + * Gibt den Wert für einen Schlüssel im Session-Array zurück + * @param string $key Schlüssel * @return string */ public function get(String $key)