api_product_helper.class.php 329 B

123456789101112131415161718
  1. <?php
  2. use Luracast\Restler\RestException;
  3. trait ApiProductHelper
  4. {
  5. /**
  6. * Product Handling
  7. *
  8. * Return an array with product information.
  9. *
  10. * @return array|mixed Data without useless information
  11. *
  12. * @url POST PRODUCT_Handling
  13. */
  14. public function PRODUCT_Handling()
  15. {
  16. return 'asd';
  17. }
  18. }