Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ResetAttemptForBackendObserver.php
Go to the documentation of this file.
1 <?php
7 
9 
11 {
16 
20  public function __construct(
21  \Magento\Captcha\Model\ResourceModel\LogFactory $resLogFactory
22  ) {
23  $this->resLogFactory = $resLogFactory;
24  }
25 
32  public function execute(\Magento\Framework\Event\Observer $observer)
33  {
34  return $this->resLogFactory->create()->deleteUserAttempts($observer->getUser()->getUsername());
35  }
36 }
__construct(\Magento\Captcha\Model\ResourceModel\LogFactory $resLogFactory)