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)