Kommentare in Session.php
Habe Kommentare in Session.php modifiziert
This commit is contained in:
parent
574f2362b1
commit
20cb808935
1 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue