Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
19 | final class MediaType |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @Required |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | public $mediaType; |
||
28 | |||
29 | /** |
||
30 | * @var Sunrise\Http\Router\Annotation\OpenApi\Schema |
||
|
|||
31 | */ |
||
32 | public $schema; |
||
33 | |||
34 | /** |
||
35 | * @return array |
||
36 | */ |
||
37 | public function toArray() : array |
||
48 |