Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class Response implements ValueObjectInterface |
||
16 | { |
||
17 | use CompositeValueObjectWithExtension; |
||
|
|||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $description; |
||
23 | |||
24 | /** |
||
25 | * @var HeaderMap|null |
||
26 | */ |
||
27 | private $headers; |
||
28 | |||
29 | /** |
||
30 | * @var MediaTypeMap|null |
||
31 | */ |
||
32 | private $content; |
||
33 | |||
34 | /** |
||
35 | * @var LinkObjectMap|null |
||
36 | */ |
||
37 | private $links; |
||
38 | |||
39 | public function __construct(string $description) |
||
44 |