AccountInterface.php 166 B

1234567891011
  1. <?php
  2. namespace App\ThirdPartyApi\Interfaces;
  3. interface AccountInterface
  4. {
  5. function getDailyBankAccountLog(
  6. $bankAccountNum,
  7. $baseDate
  8. );
  9. }