Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-customer
Model
AuthenticationInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Customer\Model
;
7
8
use
Magento\Framework\Exception\InvalidEmailOrPasswordException
;
9
use
Magento\Framework\Exception\State\UserLockedException
;
10
15
interface
AuthenticationInterface
16
{
23
public
function
processAuthenticationFailure
(
$customerId
);
24
31
public
function
unlock
(
$customerId
);
32
39
public
function
isLocked
(
$customerId
);
40
50
public
function
authenticate
(
$customerId
, $password);
51
}
Magento\Customer\Model\AuthenticationInterface
Definition:
AuthenticationInterface.php:15
Magento\Framework\Exception\InvalidEmailOrPasswordException
Definition:
InvalidEmailOrPasswordException.php:12
Magento\Framework\Exception\State\UserLockedException
Definition:
UserLockedException.php:14
Magento\Customer\Model\AuthenticationInterface\unlock
unlock($customerId)
Magento\Customer\Model\AuthenticationInterface\isLocked
isLocked($customerId)
Magento\Customer\Model\AuthenticationInterface\processAuthenticationFailure
processAuthenticationFailure($customerId)
$customerId
$customerId
Definition:
quote_with_customer.php:16
Magento\Customer\Model
Definition:
AccountManagementTest.php:7
Magento\Customer\Model\AuthenticationInterface\authenticate
authenticate($customerId, $password)