We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde4262 commit b7ddcc1Copy full SHA for b7ddcc1
app/code/Magento/Security/Model/AdminSessionInfo.php
@@ -27,22 +27,22 @@ class AdminSessionInfo extends \Magento\Framework\Model\AbstractModel
27
/**
28
* Admin logged in
29
*/
30
- const LOGGED_IN = 1;
+ public const LOGGED_IN = 1;
31
32
33
* Admin logged out
34
35
- const LOGGED_OUT = 0;
+ public const LOGGED_OUT = 0;
36
37
38
* User has been logged out by another login with the same credentials
39
40
- const LOGGED_OUT_BY_LOGIN = 2;
+ public const LOGGED_OUT_BY_LOGIN = 2;
41
42
43
* User has been logged out manually from another session
44
45
- const LOGGED_OUT_MANUALLY = 3;
+ public const LOGGED_OUT_MANUALLY = 3;
46
47
48
* All other open sessions were terminated
0 commit comments