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.
58 lines
1.3 KiB
58 lines
1.3 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Pay\Contract;
|
|
|
|
use Psr\Http\Message\MessageInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Yansongda\Pay\Exception\ContainerException;
|
|
use Yansongda\Pay\Exception\InvalidParamsException;
|
|
use Yansongda\Pay\Exception\ServiceNotFoundException;
|
|
use Yansongda\Supports\Collection;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
/**
|
|
* @return null|array|Collection|MessageInterface
|
|
*
|
|
* @throws ContainerException
|
|
* @throws InvalidParamsException
|
|
* @throws ServiceNotFoundException
|
|
*/
|
|
public function pay(array $plugins, array $params);
|
|
|
|
/**
|
|
* @param array|string $order
|
|
*
|
|
* @return array|Collection
|
|
*/
|
|
public function find($order);
|
|
|
|
/**
|
|
* @param array|string $order
|
|
*
|
|
* @return array|Collection|void
|
|
*/
|
|
public function cancel($order);
|
|
|
|
/**
|
|
* @param array|string $order
|
|
*
|
|
* @return array|Collection|void
|
|
*/
|
|
public function close($order);
|
|
|
|
/**
|
|
* @return array|Collection
|
|
*/
|
|
public function refund(array $order);
|
|
|
|
/**
|
|
* @param null|array|ServerRequestInterface $contents
|
|
*/
|
|
public function callback($contents = null, ?array $params = null): Collection;
|
|
|
|
public function success(): ResponseInterface;
|
|
}
|
|
|