-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathRequest.php
58 lines (48 loc) · 1.08 KB
/
Request.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
declare(strict_types=1);
namespace Zipkin\Instrumentation\Http\Client\Psr18;
use Zipkin\Instrumentation\Http\Client\Request as ClientRequest;
use Psr\Http\Message\RequestInterface;
final class Request extends ClientRequest
{
private RequestInterface $delegate;
public function __construct(RequestInterface $delegate)
{
$this->delegate = $delegate;
}
/**
* {@inheritdoc}
*/
public function getMethod(): string
{
return $this->delegate->getMethod();
}
/**
* {@inheritdoc}
*/
public function getPath(): ?string
{
return $this->delegate->getUri()->getPath() ?: '/';
}
/**
* {@inheritdoc}
*/
public function getUrl(): string
{
return $this->delegate->getUri()->__toString();
}
/**
* {@inheritdoc}
*/
public function getHeader(string $name): ?string
{
return $this->delegate->getHeaderLine($name) ?: null;
}
/**
* {@inheritdoc}
*/
public function unwrap(): RequestInterface
{
return $this->delegate;
}
}