12 lines
193 B
PHP
12 lines
193 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Yansongda\Pay\Contract;
|
||
|
|
|
||
|
|
use GuzzleHttp\ClientInterface;
|
||
|
|
|
||
|
|
interface HttpClientInterface extends ClientInterface, \Psr\Http\Client\ClientInterface
|
||
|
|
{
|
||
|
|
}
|