Document LoginManager properties

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
VirtualTam 2018-04-04 00:43:48 +02:00
parent 63ea23c2a6
commit 1b28c66cc7
1 changed files with 11 additions and 0 deletions

View File

@ -6,11 +6,22 @@ namespace Shaarli;
*/
class LoginManager
{
/** @var array A reference to the $_GLOBALS array */
protected $globals = [];
/** @var ConfigManager Configuration Manager instance **/
protected $configManager = null;
/** @var SessionManager Session Manager instance **/
protected $sessionManager = null;
/** @var string Path to the file containing IP bans */
protected $banFile = '';
/** @var bool Whether the user is logged in **/
protected $isLoggedIn = false;
/** @var bool Whether the Shaarli instance is open to public edition **/
protected $openShaarli = false;
/**