vendor/shopware/core/Content/Product/Cleanup/CleanupProductKeywordDictionaryTask.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Content\Product\Cleanup;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Shopware\Core\Framework\MessageQueue\ScheduledTask\ScheduledTask;
  5. #[Package('system-settings')]
  6. class CleanupProductKeywordDictionaryTask extends ScheduledTask
  7. {
  8.     public static function getTaskName(): string
  9.     {
  10.         return 'product_keyword_dictionary.cleanup';
  11.     }
  12.     public static function getDefaultInterval(): int
  13.     {
  14.         return 604800// 1 week
  15.     }
  16. }