]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/LoginManager.php
Document LoginManager properties
[github/shaarli/Shaarli.git] / application / LoginManager.php
index 8f6bf0da82a0d19c7665f650d220044ede81f57f..d81c6c05811e178e747a097cb46a5ad2aa36808c 100644 (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;
 
     /**