Conditions | 4 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
19 | 4 | public function createMediaType(): Objects\MediaType |
|
20 | { |
||
21 | 4 | return new Objects\MediaType( |
|
22 | 4 | $this->getSchema() ? $this->getSchema()->createSchemaAggregate() : null, |
|
23 | 4 | $this->getExamples() ? $this->getExamples()->createExamples() : null, |
|
24 | 4 | $this->getEncodings() ? $this->getEncodings()->createEncodings() : null, |
|
25 | 4 | $this->getExtensions() |
|
26 | ); |
||
27 | } |
||
28 | |||
65 |