YoastSEO_Vendor\League\OAuth2\Client\Tool
RequestFactory{} Yoast 1.0
Used to produce PSR-7 Request instances.
Хуков нет.
Возвращает
null
. Ничего.
Использование
$RequestFactory = new RequestFactory(); // use class methods
Методы
- getRequest($method, $uri, array $headers = [], $body = null, $version = '1.1')
- getRequestWithOptions($method, $uri, array $options = [])
- parseOptions(array $options)
Код RequestFactory{} RequestFactory{} Yoast 16.1.1
class RequestFactory
{
/**
* Creates a PSR-7 Request instance.
*
* @param null|string $method HTTP method for the request.
* @param null|string $uri URI for the request.
* @param array $headers Headers for the message.
* @param string|resource|StreamInterface $body Message body.
* @param string $version HTTP protocol version.
*
* @return Request
*/
public function getRequest($method, $uri, array $headers = [], $body = null, $version = '1.1')
{
return new \YoastSEO_Vendor\GuzzleHttp\Psr7\Request($method, $uri, $headers, $body, $version);
}
/**
* Parses simplified options.
*
* @param array $options Simplified options.
*
* @return array Extended options for use with getRequest.
*/
protected function parseOptions(array $options)
{
// Should match default values for getRequest
$defaults = ['headers' => [], 'body' => null, 'version' => '1.1'];
return \array_merge($defaults, $options);
}
/**
* Creates a request using a simplified array of options.
*
* @param null|string $method
* @param null|string $uri
* @param array $options
*
* @return Request
*/
public function getRequestWithOptions($method, $uri, array $options = [])
{
$options = $this->parseOptions($options);
return $this->getRequest($method, $uri, $options['headers'], $options['body'], $options['version']);
}
}