IRefillOil.php 258 B

1234567891011121314151617
  1. <?php
  2. namespace refill;
  3. abstract class IRefillOil extends IRefill
  4. {
  5. public function __construct($cfgs)
  6. {
  7. parent::__construct($cfgs);
  8. }
  9. public function balance()
  10. {
  11. return [false, 'RefillOil 暂无余额接口'];
  12. }
  13. }