12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Cron;
- use Magento\Integration\Model\Oauth\Token\RequestLog\WriterInterface as RequestLogWriter;
- /**
- * Cron class for clearing log of outdated token request authentication failures.
- */
- class CleanExpiredAuthenticationFailures
- {
- /**
- * @var RequestLogWriter
- */
- private $requestLogWriter;
- /**
- * Initialize dependencies.
- *
- * @param RequestLogWriter $requestLogWriter
- */
- public function __construct(
- RequestLogWriter $requestLogWriter
- ) {
- $this->requestLogWriter = $requestLogWriter;
- }
- /**
- * Clearing log of outdated token request authentication failures.
- *
- * @return void
- */
- public function execute()
- {
- $this->requestLogWriter->clearExpiredFailures();
- }
- }
|