WithdrawInterface.php 100 B

12345678
  1. <?php
  2. namespace App\Interfaces;
  3. interface WithdrawInterface
  4. {
  5. function execute($gateToken);
  6. }