RefillOil.php 590 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace refill\xunyin_kami;
  3. require_once(BASE_HELPER_RAPI_PATH . '/xunyin_kami/config.php');
  4. use refill;
  5. use Log;
  6. class RefillOil extends refill\IRefillOil
  7. {
  8. public function __construct($cfgs)
  9. {
  10. parent::__construct($cfgs);
  11. }
  12. public function add($card_no, $card_type, $amount, $params,&$net_errno = 0)
  13. {
  14. return [false, '不支持提单', false];
  15. }
  16. public function query($refill_info)
  17. {
  18. return [false, '暂无查询接口'];
  19. }
  20. public function balance()
  21. {
  22. return [false, '暂无余额接口'];
  23. }
  24. }