ServiceInterface.php 307 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModuleSynchronousAmqp\Api;
  7. interface ServiceInterface
  8. {
  9. /**
  10. * @param string $simpleDataItem
  11. * @return string
  12. */
  13. public function execute($simpleDataItem);
  14. }