mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-03-25 06:52:33 +00:00
13 lines
216 B
PHP
13 lines
216 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Yansongda\Artful\Contract;
|
|
|
|
use Psr\Http\Client\ClientInterface;
|
|
|
|
interface HttpClientFactoryInterface
|
|
{
|
|
public function create(array $options = []): ClientInterface;
|
|
}
|