Skip to content

Commit b7ddcc1

Browse files
authored
Visibility for constants
1 parent dde4262 commit b7ddcc1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/Security/Model/AdminSessionInfo.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ class AdminSessionInfo extends \Magento\Framework\Model\AbstractModel
2727
/**
2828
* Admin logged in
2929
*/
30-
const LOGGED_IN = 1;
30+
public const LOGGED_IN = 1;
3131

3232
/**
3333
* Admin logged out
3434
*/
35-
const LOGGED_OUT = 0;
35+
public const LOGGED_OUT = 0;
3636

3737
/**
3838
* User has been logged out by another login with the same credentials
3939
*/
40-
const LOGGED_OUT_BY_LOGIN = 2;
40+
public const LOGGED_OUT_BY_LOGIN = 2;
4141

4242
/**
4343
* User has been logged out manually from another session
4444
*/
45-
const LOGGED_OUT_MANUALLY = 3;
45+
public const LOGGED_OUT_MANUALLY = 3;
4646

4747
/**
4848
* All other open sessions were terminated

0 commit comments

Comments
 (0)