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