RefillCallBack.php 326 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace refill\beixt;
  3. use refill;
  4. class RefillCallBack implements refill\IRefillCallBack
  5. {
  6. public function verify($params) : bool
  7. {
  8. return true;
  9. }
  10. public function onOil($params)
  11. {
  12. }
  13. public function onPhone($params)
  14. {
  15. // TODO: Implement onPhone() method.
  16. }
  17. }