mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-14 12:13:14 +03:00
46 lines
911 B
PHP
46 lines
911 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (C) 2013-2016 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailgun\HttpClient\Plugin;
|
|
|
|
use Http\Client\Common\Plugin;
|
|
use Psr\Http\Message\RequestInterface;
|
|
use Psr\Http\Message\UriInterface;
|
|
|
|
/**
|
|
* Replaces a URI with a new one. Good for debugging.
|
|
*
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
*/
|
|
final class ReplaceUriPlugin implements Plugin
|
|
{
|
|
/**
|
|
* @var UriInterface
|
|
*/
|
|
private $uri;
|
|
|
|
/**
|
|
* @param UriInterface $uri
|
|
*/
|
|
public function __construct(UriInterface $uri)
|
|
{
|
|
$this->uri = $uri;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function handleRequest(RequestInterface $request, callable $next, callable $first)
|
|
{
|
|
$request = $request->withUri($this->uri);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|