• This project
    • Loading...
  • Sign in

fe / YOHOBUYPC · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 2
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYPC
  • library
  • WebPlugin
  • Pay
  • PayInterface.php
  • temp 逛和支付
    b33bb4f6
    by whb
    2016-04-20 18:07:04 +0800  
    Browse Files
PayInterface.php 403 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

namespace WebPlugin\Pay;

interface PayInterface
{
	/**
	 * 获取支付请求的url
	 * Enter description here ...
	 * @param Reqparams $params
	 */
	function getPayRequestPars(Reqparams $params);
	
	/**
	 * 解析返回的参数
	 * Enter description here ...
	 * @param array $arrResponse
	 * @return QPay_Utils_Rspparams
	 */
	function parseResponse(Array $arrResponse);
}