File manager - Edit - /home/adiance/public_html/wp-content/plugins/amp/vendor/ampproject/common/src/RemoteRequest/StubbedRemoteGetRequest.php
Back
<?php namespace AmpProject\RemoteRequest; use AmpProject\Exception\FailedRemoteRequest; use AmpProject\RemoteGetRequest; use AmpProject\Response; use LogicException; /** * Stub for simulating remote requests. * * @package ampproject/common */ final class StubbedRemoteGetRequest implements RemoteGetRequest { /** * Associative array of data for mapping between arguments and returned results. * * @var array */ private $argumentMap; /** * Instantiate a StubbedRemoteGetRequest object. * * @param array $argumentMap Associative array of data for mapping between arguments and returned results. */ public function __construct($argumentMap) { $this->argumentMap = $argumentMap; } /** * Do a GET request to retrieve the contents of a remote URL. * * @param string $url URL to get. * @return Response Response for the executed request. * @throws FailedRemoteRequest If retrieving the contents from the URL failed. */ public function get($url) { if (! array_key_exists($url, $this->argumentMap)) { throw new LogicException("Trying to stub a remote request for an unknown URL: {$url}."); } return new RemoteGetRequestResponse($this->argumentMap[$url]); } }
| ver. 1.4 |
Github
|
.
| PHP 7.3.33 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings