Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ResetAttemptForFrontendObserver.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  {
35  $model = $observer->getModel();
36 
37  return $this->resLogFactory->create()->deleteUserAttempts($model->getEmail());
38  }
39 }
__construct(\Magento\Captcha\Model\ResourceModel\LogFactory $resLogFactory)