RefillPhone.php 390 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace refill\bdt;
  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)
  11. {
  12. return [false,'No Implement'];
  13. }
  14. public function query($refill_info)
  15. {
  16. return [false,'No Implement'];
  17. }
  18. }