Session management: Add PHPDoc

This commit is contained in:
Molkobain
2021-09-08 14:54:20 +02:00
parent 0de4e62fcd
commit 08946066fb
3 changed files with 5 additions and 2 deletions

View File

@@ -16,8 +16,11 @@ namespace Combodo\iTop\Application\Helper;
*/
class Session
{
/** @var int|null */
public static $iSessionId = null;
/** @var bool */
protected static $bIsInitialized = false;
/** @var bool */
protected static $bSessionStarted = false;
public static function Start()