Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DeleteOldAttempts.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Captcha\Cron;
7 
12 {
16  protected $resLogFactory;
17 
21  public function __construct(
22  \Magento\Captcha\Model\ResourceModel\LogFactory $resLogFactory
23  ) {
24  $this->resLogFactory = $resLogFactory;
25  }
26 
32  public function execute()
33  {
34  $this->resLogFactory->create()->deleteOldAttempts();
35 
36  return $this;
37  }
38 }
__construct(\Magento\Captcha\Model\ResourceModel\LogFactory $resLogFactory)