magento2-docker/dev/tests/integration/_files/Magento/TestModuleSynchronousAmqp/Model/RpcRequestHandler.php

19 lines
379 B
PHP
Executable File

<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestModuleSynchronousAmqp\Model;
class RpcRequestHandler
{
/**
* @param string $simpleDataItem
* @return string
*/
public function process($simpleDataItem)
{
return $simpleDataItem . ' processed by RPC handler';
}
}