File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
app/code/Magento/Customer/Model Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 14
14
use Magento \Framework \Exception \State \UserLockedException ;
15
15
16
16
/**
17
- * Class Authentication
17
+ * Class Authentication model
18
18
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
19
19
*/
20
20
class Authentication implements AuthenticationInterface
21
21
{
22
22
/**
23
23
* Configuration path to customer lockout threshold
24
24
*/
25
- const LOCKOUT_THRESHOLD_PATH = 'customer/password/lockout_threshold ' ;
25
+ public const LOCKOUT_THRESHOLD_PATH = 'customer/password/lockout_threshold ' ;
26
26
27
27
/**
28
28
* Configuration path to customer max login failures number
29
29
*/
30
- const MAX_FAILURES_PATH = 'customer/password/lockout_failures ' ;
30
+ public const MAX_FAILURES_PATH = 'customer/password/lockout_failures ' ;
31
31
32
32
/**
33
33
* @var CustomerRegistry
Original file line number Diff line number Diff line change @@ -1418,6 +1418,5 @@ public function _resetState(): void
1418
1418
$ this ->_origData = null ;
1419
1419
$ this ->storedData = [];
1420
1420
$ this ->_data = [];
1421
-
1422
1421
}
1423
1422
}
You can’t perform that action at this time.
0 commit comments