Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class Request implements RequestInterface |
||
9 | { |
||
10 | |||
11 | use Traits\MessageTrait; |
||
12 | use Traits\RequestTrait; |
||
13 | |||
14 | /** |
||
15 | * |
||
16 | * @param string $method |
||
17 | * @param UriInterface $uri |
||
18 | * @param array $headers |
||
19 | * @param StreamInterface $body |
||
20 | * @param string $protocolVersion |
||
21 | */ |
||
22 | 28 | public function __construct($method, UriInterface $uri, array $headers = [], $body, $protocolVersion = '1.1') |
|
44 |