| 1 | <?php declare(strict_types=1);  | 
            ||
| 7 | class Psr7RequestAdapter implements RequestAdapterInterface  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * @var RequestInterface  | 
            ||
| 11 | */  | 
            ||
| 12 | private $request;  | 
            ||
| 13 | |||
| 14 | 1 | public function __construct(RequestInterface $request)  | 
            |
| 18 | |||
| 19 | 1 | public function getMethod(): string  | 
            |
| 23 | |||
| 24 | 1 | public function getUri(): string  | 
            |
| 28 | |||
| 29 | 1 | public function getContent(): string  | 
            |
| 33 | |||
| 34 | 1 | public function getHeader(string $key): ?string  | 
            |
| 40 | }  | 
            ||
| 41 |