選択できるのは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. }