53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
|
<?php
|
|||
|
|
|||
|
/**
|
|||
|
* Copyright 1999-2021 iFLYTEK Corporation
|
|||
|
|
|||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|||
|
* you may not use this file except in compliance with the License.
|
|||
|
* You may obtain a copy of the License at
|
|||
|
*
|
|||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
|
*
|
|||
|
* Unless required by applicable law or agreed to in writing, software
|
|||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|||
|
* See the License for the specific language governing permissions and
|
|||
|
* limitations under the License.
|
|||
|
*/
|
|||
|
|
|||
|
namespace IFlytek\Xfyun\Core\Handler;
|
|||
|
use GuzzleHttp\ClientInterface;
|
|||
|
use Psr\Http\Message\RequestInterface;
|
|||
|
use Psr\Http\Message\ResponseInterface;
|
|||
|
/**
|
|||
|
* GuzzleHttp-7处理类
|
|||
|
*
|
|||
|
* @author guizheng@iflytek.com
|
|||
|
*/
|
|||
|
class Guzzle7HttpHandler{
|
|||
|
/**
|
|||
|
* @var ClientInterface
|
|||
|
*/
|
|||
|
private $client;
|
|||
|
|
|||
|
/**
|
|||
|
* @param ClientInterface $client
|
|||
|
*/
|
|||
|
public function __construct(ClientInterface $client)
|
|||
|
{
|
|||
|
$this->client = $client;
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 接收Psr-7的request对象和请求参数,返回Psr-7的response对象
|
|||
|
*
|
|||
|
* @param RequestInterface $request
|
|||
|
* @param array $options
|
|||
|
* @return ResponseInterface
|
|||
|
*/
|
|||
|
public function __invoke(RequestInterface $request, array $options = [])
|
|||
|
{
|
|||
|
return $this->client->send($request, $options);
|
|||
|
}
|
|||
|
}
|