HandlerOne.php 636 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModuleMessageQueueConfiguration;
  7. /**
  8. * Class for testing queue handlers.
  9. */
  10. class HandlerOne
  11. {
  12. /**
  13. * Return true.
  14. *
  15. * @return bool
  16. */
  17. public function handlerMethodOne()
  18. {
  19. return true;
  20. }
  21. /**
  22. * Return true.
  23. *
  24. * @return bool
  25. */
  26. public function handlerMethodTwo()
  27. {
  28. return true;
  29. }
  30. /**
  31. * Return true.
  32. *
  33. * @return bool
  34. */
  35. public function handlerMethodThree()
  36. {
  37. return true;
  38. }
  39. }