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
|
* Wrapper für eine Session
|
||||||
*
|
*
|
||||||
* @author Christian Brüggen
|
* @author Eichehome
|
||||||
*/
|
*/
|
||||||
class Session
|
class Session
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Konstrucktor
|
* Konstruktor (Startet eine Session)
|
||||||
*/
|
*/
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
@ -33,8 +33,8 @@ class Session
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt einen Wert für einen Key im Session-Array
|
* Setzt einen Wert für einen Schlüssel im Session-Array. Falls kein Wert angegeben, wird der Wert gelöscht
|
||||||
* @param string $key Key
|
* @param string $key Schlüssel
|
||||||
* @param string $value Wert
|
* @param string $value Wert
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
@ -44,8 +44,8 @@ class Session
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gibt den Wert für einen Key im Session-Array zurück
|
* Gibt den Wert für einen Schlüssel im Session-Array zurück
|
||||||
* @param string $key Key
|
* @param string $key Schlüssel
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function get(String $key)
|
public function get(String $key)
|
||||||
|
|
Loading…
Reference in a new issue