1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestModuleMessageQueueConfiguration;
- /**
- * Class for testing asynchronous queue handlers.
- *
- * @SuppressWarnings(PHPMD)
- */
- class AsyncHandler
- {
- /**
- * @param string
- * @return void
- */
- public function methodWithStringParam($param)
- {
- return;
- }
- /**
- * @param bool
- * @return void
- */
- public function methodWithBoolParam($param)
- {
- return;
- }
- /**
- * @param mixed
- * @return void
- */
- public function methodWithMixedParam($param)
- {
- return;
- }
- }
|