Dummy.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Indexer\Action;
  7. use Magento\Framework\Indexer\ActionInterface;
  8. use Magento\Framework\Mview\ActionInterface as MviewActionInterface;
  9. class Dummy implements ActionInterface, MviewActionInterface
  10. {
  11. /**
  12. * Execute full indexation
  13. *
  14. * @return void
  15. */
  16. public function executeFull()
  17. {
  18. }
  19. /**
  20. * Execute partial indexation by ID list
  21. *
  22. * @param int[] $ids
  23. * @return void
  24. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  25. */
  26. public function executeList(array $ids)
  27. {
  28. }
  29. /**
  30. * Execute partial indexation by ID
  31. *
  32. * @param int $id
  33. * @return void
  34. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  35. */
  36. public function executeRow($id)
  37. {
  38. }
  39. /**
  40. * Execute materialization on ids entities
  41. *
  42. * @param int[] $ids
  43. * @return void
  44. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  45. */
  46. public function execute($ids)
  47. {
  48. }
  49. }