brokeyourbike/http-client

Http客户端接口和支持特质

1.0.5 2023-05-14 22:16 UTC

This package is auto-updated.

Last update: 2024-09-20 14:50:38 UTC


README

Latest Stable Version Total Downloads Maintainability Test Coverage

Http客户端接口和支持特质

安装

composer require brokeyourbike/http-client

使用

use BrokeYourBike\HttpClient\HttpClientInterface;
use BrokeYourBike\HttpClient\HttpClientTrait;

class ApiClient implements HttpClientInterface
{
    use HttpClientTrait;

    public function __construct(\GuzzleHttp\ClientInterface $httpClient)
    {
        $this->httpClient = $httpClient;
    }
}

作者

许可证

Mozilla公共许可证v2.0