PayInterface.php 338 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Bear
  5. * Date: 2019/8/12
  6. * Time: 下午7:13
  7. */
  8. namespace app\main\InternalInterface;
  9. /**
  10. * Interface PayInterface
  11. * @package app\main\InternalInterface
  12. */
  13. interface PayInterface
  14. {
  15. public function init($payMethod);
  16. public function createOrder();
  17. public function saveOrder();
  18. }