Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CleanExpiredAuthenticationFailures.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  private $requestLogWriter;
19 
25  public function __construct(
26  RequestLogWriter $requestLogWriter
27  ) {
28  $this->requestLogWriter = $requestLogWriter;
29  }
30 
36  public function execute()
37  {
38  $this->requestLogWriter->clearExpiredFailures();
39  }
40 }