/
home
/
henzagold
/
server
/
vendor
/
phpro
/
soap-client
/
src
/
Phpro
/
SoapClient
/
Middleware
/
File Upload :
llllll
Current File: /home/henzagold/server/vendor/phpro/soap-client/src/Phpro/SoapClient/Middleware/Middleware.php
<?php namespace Phpro\SoapClient\Middleware; use Http\Client\Exception; use Http\Promise\Promise; use Phpro\SoapClient\Exception\MiddlewareException; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** * Class Middleware * * @package Phpro\SoapClient\Middleware */ class Middleware implements MiddlewareInterface { public function getName(): string { return 'empty_middleware'; } public function handleRequest(RequestInterface $request, callable $next, callable $first): Promise { return $this->beforeRequest($next, $request) ->then( (function (ResponseInterface $response) { return $this->afterResponse($response); })->bindTo($this), (function (Exception $exception) { $this->onError($exception); })->bindTo($this) ); } public function beforeRequest(callable $next, RequestInterface $request): Promise { return $next($request); } public function afterResponse(ResponseInterface $response): ResponseInterface { return $response; } public function onError(Exception $exception) { throw MiddlewareException::fromHttPlugException($exception); } }
Copyright ©2k19 -
Hexid
|
Tex7ure