TransformInterface.php 203 B

1234567891011121314
  1. <?php
  2. namespace App\Interfaces;
  3. interface TransformInterface
  4. {
  5. /**
  6. * 服务处理入口
  7. * @param $body
  8. * @return mixed
  9. * Author: Mead
  10. */
  11. public function main($body);
  12. }