RefillPhone.php 459 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace refill\gftd;
  3. require_once(BASE_HELPER_RAPI_PATH . '/gftd/config.php');
  4. use refill;
  5. use refill\IRefillPhone;
  6. class RefillPhone extends IRefillPhone
  7. {
  8. public function __construct($cfgs)
  9. {
  10. parent::__construct($cfgs);
  11. }
  12. public function add($card_no,$card_type,$amount,$input)
  13. {
  14. return [false,'No Implement'];
  15. }
  16. public function query($refill_info)
  17. {
  18. return [false,'No Implement'];
  19. }
  20. }