1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Cron;
- use Magento\Catalog\Model\ResourceModel\Attribute\WebsiteAttributesSynchronizer;
- /**
- * Class SynchronizeWebsiteAttributes
- * @package Magento\Catalog\Cron
- */
- class SynchronizeWebsiteAttributes
- {
- /**
- * @var WebsiteAttributesSynchronizer
- */
- private $synchronizer;
- /**
- * SynchronizeWebsiteAttributes constructor.
- * @param WebsiteAttributesSynchronizer $synchronizer
- */
- public function __construct(WebsiteAttributesSynchronizer $synchronizer)
- {
- $this->synchronizer = $synchronizer;
- }
- /**
- * Synchronizes website attribute values if needed
- * @return void
- */
- public function execute()
- {
- if ($this->synchronizer->isSynchronizationRequired()) {
- $this->synchronizer->synchronize();
- }
- }
- }
|