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.
20 lines
376 B
20 lines
376 B
<?php
|
|
|
|
namespace Yansongda\Pay\Contracts;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Yansongda\Supports\Collection;
|
|
|
|
interface GatewayInterface
|
|
{
|
|
/**
|
|
* Pay an order.
|
|
*
|
|
* @author yansongda <me@yansongda.cn>
|
|
*
|
|
* @param string $endpoint
|
|
*
|
|
* @return Collection|Response
|
|
*/
|
|
public function pay($endpoint, array $payload);
|
|
}
|
|
|