AsyncHandler.php 674 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 asynchronous queue handlers.
  9. *
  10. * @SuppressWarnings(PHPMD)
  11. */
  12. class AsyncHandler
  13. {
  14. /**
  15. * @param string
  16. * @return void
  17. */
  18. public function methodWithStringParam($param)
  19. {
  20. return;
  21. }
  22. /**
  23. * @param bool
  24. * @return void
  25. */
  26. public function methodWithBoolParam($param)
  27. {
  28. return;
  29. }
  30. /**
  31. * @param mixed
  32. * @return void
  33. */
  34. public function methodWithMixedParam($param)
  35. {
  36. return;
  37. }
  38. }