您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

28 行
413B

  1. <?php
  2. namespace App\Logics\QRService;
  3. class ChargeLogic
  4. {
  5. use DepositCheck;
  6. /**
  7. * デポジットをチャージする
  8. */
  9. public static function charge(
  10. string $shopId,
  11. int $amount,
  12. ) {
  13. [$shop, $deposit] = self::getData($shopId);
  14. $deposit->deposit += $amount;
  15. self::makeTransferHistory($shopId, $amount);
  16. return $deposit;
  17. }
  18. }