UserCoinService.php 280 B

12345678910111213141516
  1. <?php
  2. namespace app\services\user;
  3. class UserCoinService {
  4. /**
  5. *
  6. * @param $fromId
  7. * @param $toAddr
  8. * @param $symbol
  9. * @param $has
  10. * @param $amount
  11. */
  12. public static function transferTo($fromId, $toAddr, $symbol, $has, $amount) {
  13. }
  14. }