IPay.php 233 B

123456789101112131415
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 16/9/21
  6. * Time: 下午6:03
  7. */
  8. namespace Pay;
  9. interface IPay
  10. {
  11. public function gen_pay($pay_sn, $fee,$order_sn,$subject);
  12. public function on_notify($post);
  13. }