File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/php-http/client-common/src/Plugin/HistoryPlugin.php
Back
<?php namespace AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Client\Common\Plugin; use AmeliaHttp\Client\Exception; use AmeliaPsr\Http\Message\RequestInterface; use AmeliaPsr\Http\Message\ResponseInterface; /** * Record HTTP calls. * * @author Joel Wurtz <joel.wurtz@gmail.com> */ final class HistoryPlugin implements Plugin { /** * Journal use to store request / responses / exception. * * @var Journal */ private $journal; /** * @param Journal $journal */ public function __construct(Journal $journal) { $this->journal = $journal; } /** * {@inheritdoc} */ public function handleRequest(RequestInterface $request, callable $next, callable $first) { $journal = $this->journal; return $next($request)->then(function (ResponseInterface $response) use ($request, $journal) { $journal->addSuccess($request, $response); return $response; }, function (Exception $exception) use ($request, $journal) { $journal->addFailure($request, $exception); throw $exception; }); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings