123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogRule\Cron;
- class DailyCatalogUpdate
- {
- /**
- * @var \Magento\CatalogRule\Model\Indexer\Rule\RuleProductProcessor
- */
- protected $ruleProductProcessor;
- /**
- * @param \Magento\CatalogRule\Model\Indexer\Rule\RuleProductProcessor $ruleProductProcessor
- */
- public function __construct(\Magento\CatalogRule\Model\Indexer\Rule\RuleProductProcessor $ruleProductProcessor)
- {
- $this->ruleProductProcessor = $ruleProductProcessor;
- }
- /**
- * Daily update catalog price rule by cron
- * Update include interval 3 days - current day - 1 days before + 1 days after
- * This method is called from cron process, cron is working in UTC time and
- * we should generate data for interval -1 day ... +1 day
- *
- * @return void
- */
- public function execute()
- {
- $this->ruleProductProcessor->markIndexerAsInvalid();
- }
- }
|