Files
swiftadmin/vendor/yansongda/pay/src/Contract/ParserInterface.php
2022-08-19 19:48:37 +08:00

16 lines
233 B
PHP

<?php
declare(strict_types=1);
namespace Yansongda\Pay\Contract;
use Psr\Http\Message\ResponseInterface;
interface ParserInterface
{
/**
* @return mixed
*/
public function parse(?ResponseInterface $response);
}