RefillPhone.php 415 B

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