for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Client\Plugin;
use Psr\Http\Message\RequestInterface;
/**
* Adds headers to the request.
* If the header already exists the value will be appended to the current value
*/
class HeaderAppendPlugin implements Plugin
{
private $headers = [];
* @param array $headers headers to add to the request
public function __construct(array $headers)
$this->headers = $headers;
}
* {@inheritdoc}
public function handleRequest(RequestInterface $request, callable $next, callable $first)
foreach ($this->headers as $header => $headerValue) {
$request = $request->withAddedHeader($header, $headerValue);
return $next($request);