Total Complexity | 5 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
6 | class Parameters |
||
7 | { |
||
8 | private $bodyParameter; |
||
9 | private $queryParameters; |
||
10 | private $headerParameters; |
||
11 | private $pathParameters; |
||
12 | |||
13 | public function __construct(array $bodyParameter, array $queryParameters, array $headerParameters, array $pathParameters) |
||
14 | { |
||
15 | $this->bodyParameter = $bodyParameter; |
||
16 | $this->queryParameters = $queryParameters; |
||
17 | $this->headerParameters = $headerParameters; |
||
18 | $this->pathParameters = $pathParameters; |
||
19 | } |
||
20 | |||
21 | public function getBodyParameter(): array |
||
24 | } |
||
25 | |||
26 | public function getQueryParameters(): array |
||
27 | { |
||
28 | return $this->queryParameters; |
||
29 | } |
||
30 | |||
31 | public function getHeaderParameters(): array |
||
32 | { |
||
33 | return $this->headerParameters; |
||
34 | } |
||
35 | |||
36 | public function getPathParameters(): array |
||
39 | } |
||
40 | } |