Conditions | 4 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function createResponse(): Objects\Response |
||
22 | { |
||
23 | return new Objects\Response( |
||
24 | $this->getDescription(), |
||
25 | $this->getHeaders() ? $this->getHeaders()->createHeaders() : null, |
||
26 | $this->getContent() ? $this->getContent()->createMediaTypes() : null, |
||
27 | $this->getLinks() ? $this->getLinks()->createLinks() : null, |
||
28 | $this->getExtensions() |
||
29 | ); |
||
30 | } |
||
31 | |||
85 |