You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
588 B

3 years ago
<?php
defined('BASE_PATH') OR exit('No direct script access allowed');
class yeepay
{
/**
* 生成支付代码
* @param array $order 订单信息
* @param array $payment 支付方式信息
*/
public function get_code($order, $payment)
{
}
/**
* 同步通知
* @param $data
* @return mixed
*/
public function callback($data)
{
}
/**
* 异步通知
* @param $data
* @return mixed
*/
public function notify($data)
{
}
3 years ago
}