123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestModuleAsyncAmqp\Model;
- class RequestHandler
- {
- /**
- * @param \Magento\TestModuleAsyncAmqp\Model\AsyncTestData $simpleDataItem
- */
- public function process($simpleDataItem)
- {
- file_put_contents(
- $simpleDataItem->getTextFilePath(),
- 'InvokedFromRequestHandler-' . $simpleDataItem->getValue() . PHP_EOL,
- FILE_APPEND
- );
- }
- }
|